-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.23 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
{
"name": "iad/db-decoration-bundle",
"description": "Decorate database data from custom entity annotation class",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Adrien MALLET",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Iad\\Bundle\\DbDecorationBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Iad\\Bundle\\DbDecorationBundle\\Tests\\": "Tests/"
}
},
"require": {
"symfony/http-kernel": "^4.2",
"symfony/dependency-injection": "^4.2",
"doctrine/annotations": "^1.8",
"symfony/config": "^4.2",
"doctrine/common": "^2.11",
"symfony/event-dispatcher": "^4.2"
},
"require-dev": {
"symfony/framework-bundle": "^4.2",
"symfony/yaml": "^4.2",
"symfony/console": "^4.2",
"symfony/process": "^4.2",
"ext-sqlite3": "^7.3",
"doctrine/orm": "^2.7",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"symfony/dotenv": "^5.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/maker-bundle": "^1.14"
}
}