-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 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
{
"name": "slimx-seed-app/api",
"authors": [
{
"name": "Diogo Oliveira de Melo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SeedApp\\": "src/SeedApp"
}
},
"autoload-dev": {
"psr-4": {
"SeedApp\\Tests\\": "tests/SeedApp"
}
},
"require": {
"gabordemooij/redbean": "^5.1",
"vonbraunlabs/slimx": "^0.1.31",
"monolog/monolog": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"phpunit/dbunit": "^4.0",
"phpstan/phpstan": "^0.9.2",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"test": "vendor/bin/phpunit --stderr",
"cs": "vendor/bin/phpcs --standard=PSR2 src/ tests/ config/",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 src/ tests/ config/",
"phpstan": "vendor/bin/phpstan analyse src/ tests/ config/ -l 5",
"lint": "for name in $(find src/ tests/ config/ -type f -name '*.php'); do php -l $name ; done"
}
}