-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 864 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 864 Bytes
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": "vaderlab/eav-core-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "Entity Attribute model integration",
"require": {
"php": ">=7.1.3",
"doctrine/orm": "~2.4",
"symfony/framework-bundle": "^2.7.22|~3.0|~4.0",
"doctrine/doctrine-cache-bundle": "~1.2",
"symfony/event-dispatcher": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36|^5.7|^6.4",
"symfony/phpunit-bridge": "~2.7|~3.0|~4.0"
},
"config": {
},
"autoload": {
"psr-4": {
"Vaderlab\\EAV\\Core\\": ""
}
},
"autoload-dev": {
"psr-4": {
"": "/Tests"
}
},
"scripts": {
"auto-scripts": [
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
},
"extra": {
}
}