forked from deprecated-packages/pehapkari.cz-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (46 loc) · 1.44 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
45
46
47
{
"name": "pehapkari/website",
"license": "MIT",
"require": {
"php": "^7.1",
"symplify/statie": "^1.4"
},
"require-dev": {
"doctrine/annotations": "^1.4",
"doctrine/cache": "^1.6",
"latte/latte": "^2.4",
"nette/application": "^2.4",
"nette/forms": "^2.4",
"nette/security": "^2.4",
"symfony/console": "^3.2",
"symfony/event-dispatcher": "^3.2",
"symfony/expression-language": "^3.2",
"symfony/intl": "^3.2",
"symfony/validator": "^3.2",
"phpstan/phpstan": "^0.7",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "3.0.0RC4 as 2.8.1",
"symplify/easy-coding-standard": "v2.0.0-RC2",
"symplify/coding-standard": "v2.0.0-RC2",
"slevomat/coding-standard": "^2.3"
},
"autoload": {
"psr-4": {
"Pehapkari\\Website\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pehapkari\\Website\\Tests\\": "tests",
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src"
}
},
"scripts": {
"check-cs": "vendor/bin/easy-coding-standard check src tests",
"fix-cs": [
"sh ./bin/clear_post_trailing_whitespaces.sh",
"vendor/bin/easy-coding-standard check src tests --fix"
],
"phpstan": "vendor/bin/phpstan analyse --level=7 --configuration=phpstan.neon src tests"
}
}