-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1004 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
{
"name": "jeslopcru/php-docker-boostrap",
"require": {
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpunit/php-invoker": "^1.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.3",
"squizlabs/php_codesniffer": "^3.3",
"symfony/var-dumper": "^4.1"
},
"autoload": {
"psr-4": {
"Katas\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Katas\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"lint": "parallel-lint . --exclude vendor",
"style": "phpcs -p --standard=PSR2 src tests",
"fix-style": "phpcbf -p --standard=PSR2 src tests",
"phpunit": "phpunit --configuration phpunit.xml",
"test": [
"parallel-lint . --exclude vendor",
"phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpunit --configuration phpunit.xml"
]
}
}