-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.01 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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": "pckg-app/frontend-dev",
"description": "Frontend pckg dev package",
"homepage": "https://github.com/pckg-app/frontend-dev",
"license": "MIT",
"authors": [
{
"name": "Bojan Rajh",
"email": "schtr4jh@schtr4jh.net"
}
],
"require": {
"maximebf/debugbar": "^1.16",
"codeception/codeception": "4.*",
"codeception/module-asserts": "1.*",
"codeception/module-db": "1.*",
"codeception/module-phpbrowser": "1.*",
"codeception/module-redis": "1.*",
"codeception/module-rest": "^1.2",
"codeception/module-webdriver": "1.*",
"codeception/specify": "^1.4",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.82",
"phpstan/phpstan-strict-rules": "^0.12.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"vendor/bin/phpunit --help",
"vendor/bin/phpcloc cloc app/",
"vendor/bin/phpstan analyse app/ --level=4",
"vendor/bin/phpcs -p app/",
"vendor/bin/codecept run"
]
}
}