-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 954 Bytes
/
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
{
"repositories": [
{
"type": "vcs",
"url": "[email protected]:saleschamp/codesniffer-ruleset.git"
}
],
"require": {
"php": ">=7.0.0",
"slim/slim": "^3.1",
"monolog/monolog": "^1.17",
"nette/neon": "^2.4",
"nette/tester": "^1.7"
},
"require-dev": {
"phpstan/phpstan": "^0.7.0",
"squizlabs/php_codesniffer": "^2.8",
"dotblue/codesniffer-ruleset": "@dev"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"phpstan": "phpstan analyze -l 7 -c tests/phpstan.neon src",
"tester": "tester -p php -c tests/php.ini tests",
"phpcs": "phpcs src"
}
}