-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.22 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
{
"require": {
"aura/session": "^2.1",
"slim/slim": "^3.9",
"cakephp/database": "^3.5",
"mailgun/mailgun-php": "^2.3",
"monolog/monolog": "^1.23",
"slim/twig-view": "^2.3",
"odan/twig-translation": "^0.2.2",
"odan/twig-assets": "^1.0.0",
"symfony/translation": "^3.4",
"php-http/curl-client": "^1.7",
"zendframework/zend-hydrator": "^2.3",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-servicemanager": "^3.3",
"cboden/ratchet": "^0.4.1"
},
"require-dev": {
"robmorgan/phinx": "^0.9.1",
"odan/phinx-migrations-generator": "^2.3",
"phpunit/phpunit": "^6.4",
"phpunit/dbunit": "^3.0",
"odan/docblock-checker": "^0.2.0"
},
"autoload": {
"files": [
"lib/services.php",
"lib/util.php"
],
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit -n --no-patch 1 src tests"
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests"
}
}
}