forked from albertgoss/ddd-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (31 loc) · 947 Bytes
/
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
{
"require": {
"symfony/http-foundation": "^4.1",
"symfony/routing": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/event-dispatcher": "^4.1",
"symfony/dependency-injection": "^4.1",
"doctrine/orm": "2.*",
"doctrine/migrations": "^1.8",
"symfony/serializer": "^4.1",
"symfony/property-access": "^4.1",
"doctrine/annotations": "^1.6",
"symfony/validator": "^4.1",
"vlucas/phpdotenv": "^2.5"
},
"autoload": {
"psr-4": {
"App\\": "src/app/",
"Infrastructure\\": "src/infrastructure/",
"Contexts\\": "src/contexts/",
"Migrations\\": "database/migrations/"
},
"psr-0": {
"Infrastructure\\Annotations\\": "src/infrastructure/Annotations"
}
},
"require-dev": {
"codeception/codeception": "2.*",
"phpunit/phpunit": "6.*"
}
}