forked from evg-rudakov/arc.gb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1 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
{
"name": "Online shop",
"description": "Homework project for Web Architecture course. Licensed by the Geekbrains",
"autoload": {
"psr-4": {
"": "src/",
"Framework\\": "app/framework/",
"Test\\": "test/src/"
},
"classmap": ["app/Kernel.php"]
},
"require": {
"php": ">=7.1.0",
"symfony/config": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/http-foundation": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/routing": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.13"
},
"scripts": {
"on": "php -S 0.0.0.0:8080 -t web",
"test": "bin/phpunit --colors=always",
"ipr": "@composer install --ignore-platform-reqs",
"check": "bin/php-cs-fixer -vvv fix --dry-run",
"fix": "bin/php-cs-fixer fix"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
}
}