-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 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
{
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"ext-pdo": "*",
"doctrine/data-fixtures": "^1.4",
"doctrine/migrations": "^2.2",
"doctrine/orm": "^2.7",
"fzaninotto/faker": "^1.9",
"guzzlehttp/guzzle": "^6.5",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/proxy-manager-bridge": "^5.0",
"symfony/routing": "^5.0",
"symfony/translation": "^5.0",
"symfony/validator": "^5.0",
"vlucas/phpdotenv": "^4.1"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"codeception/module-db": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0"
},
"autoload": {
"psr-4": {
"": "src/",
"Migrations\\": "db/migrations/",
"Fixtures\\": "db/fixtures/",
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}