-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.49 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1.0",
"ext-PDO": "^7.1",
"aura/router": "^3.1",
"doctrine/migrations": "^2.2",
"laminas/laminas-config-aggregator": "^1.2",
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-stratigility": "^3.2",
"monolog/monolog": "^2.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"roave/psr-container-doctrine": "^2.1",
"symfony/console": "^5.0",
"twig/twig": "^3.0"
},
"require-dev": {
"doctrine/data-fixtures": "^1.4",
"filp/whoops": "^2.7",
"fzaninotto/faker": "^1.9",
"phpunit/phpunit": "^6.4",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Framework\\": "src/Framework/",
"Tests\\": "tests/",
"App\\": "src/App/",
"Infrastructure\\": "src/Infrastructure/"
}
},
"scripts": {
"serve": "php -S 0.0.0.0:8080 -t public",
"app": "php bin/console.php --ansi",
"migration": "phinx --ansi",
"check": [
"@cs-check",
"@test"
],
"test": "phpunit --colors=always",
"development-enable": "cp config/autoload/development.local.php.dist config/autoload/development.local.php",
"development-disable": "rm config/autoload/development.local.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}