-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
44 lines (44 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "mostertb/phpsa-2018-profiles",
"description": "Humorous educational project build by the PHP South Africa 2018 conference attendees",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Brad Mostert",
"email": "mostertb@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": { "mostertb\\PHPSA2018Profiles\\": "src/" }
},
"autoload-dev": {
"psr-4": { "mostertb\\PHPSA2018Profiles\\Tests\\": "tests/" }
},
"require": {
"php": ">7.1",
"twig/twig": "^2.5",
"ornicar/gravatar-bundle": "^1.3"
},
"require-dev": {
"php": ">7.1",
"phpunit/phpunit": "^6",
"phpstan/phpstan": "^0.10.3",
"friendsofphp/php-cs-fixer": "^2.13"
},
"scripts": {
"test": [
"phpunit",
"@phpstan",
"@php-cs-fixer"
],
"phpstan": "phpstan analyse --level max src/ tests/",
"php-cs-fixer": "php-cs-fixer fix --dry-run --diff --verbose --rules @PSR2 src/"
},
"extra": {
"heroku": {
"index-document": "index.php"
}
}
}