forked from deprecated-packages/pehapkari.cz-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 loc) · 1.2 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
{
"name": "pehapkari/website",
"license": "MIT",
"require": {
"php": "^7.1",
"symplify/statie": "^2.5"
},
"require-dev": {
"doctrine/annotations": "^1.4",
"doctrine/cache": "^1.6",
"latte/latte": "^2.4|^3.0",
"nette/application": "^2.4|^3.0",
"nette/forms": "^2.4|^3.0",
"nette/security": "^2.4|^3.0",
"symfony/console": "^3.3",
"symfony/event-dispatcher": "^3.3",
"symfony/expression-language": "^3.3",
"symfony/intl": "^3.3",
"symfony/validator": "^3.3",
"phpstan/phpstan": "^0.8",
"phpunit/phpunit": "^6.2",
"symplify/easy-coding-standard": "^2.5"
},
"autoload": {
"psr-4": {
"Pehapkari\\Website\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pehapkari\\Website\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check src tests",
"fix-cs": [
"sh ./bin/clear_post_trailing_whitespaces.sh",
"vendor/bin/ecs check src tests --fix"
],
"phpstan": "vendor/bin/phpstan analyse src tests --level max --configuration phpstan.neon"
}
}