-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.05 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
45
{
"name": "instride/pimcore-element-manager",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "Element Manager",
"keywords": [
"pimcore",
"pimcore-bundle"
],
"homepage": "https://github.com/instride-ch/pimcore-element-manager",
"authors": [
{
"name": "instride AG",
"email": "[email protected]",
"homepage": "https://instride.ch",
"role": "Digital Agency"
},
{
"name": "CORS GmbH",
"email": "[email protected]",
"homepage": "https://cors.gmbh",
"role": "Digital Agency"
}
],
"require": {
"coreshop/resource-bundle": "^4.0",
"league/csv": "^9.0",
"pimcore/pimcore": "^11.0"
},
"suggest": {
"pimcore/object-merger": "To directly merge duplicates"
},
"autoload": {
"psr-4": {
"Instride\\Bundle\\PimcoreElementManagerBundle\\": "src/PimcoreElementManagerBundle/"
}
},
"extra": {
"pimcore": {
"bundles": [
"Instride\\Bundle\\PimcoreElementManagerBundle\\PimcoreElementManagerBundle"
]
}
}
}