This repository was archived by the owner on Jul 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathcomposer.json
50 lines (50 loc) · 1.49 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
48
49
50
{
"name": "pehapkari/website",
"license": "MIT",
"require": {
"php": "^7.3",
"symplify/statie": "^5.4"
},
"require-dev": {
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.8",
"doctrine/orm": "^2.6",
"latte/latte": "^2.4",
"nette/application": "^2.4",
"nette/forms": "^2.4",
"nette/security": "^2.4",
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^7.5",
"spatie/http-status-check": "^2.5",
"symfony/console": "^4.2",
"symfony/event-dispatcher": "^4.2",
"symfony/expression-language": "^4.2",
"symfony/intl": "^4.2",
"symfony/validator": "^4.2",
"symplify/coding-standard": "^5.4",
"symplify/easy-coding-standard": "^5.4",
"symplify/phpstan-extensions": "^5.4"
},
"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 --error-format symplify",
"check-status": "vendor/bin/http-status-check scan https://pehapkari.cz --output invalid-links.txt"
},
"config": {
"sort-packages": true
}
}