forked from pimcore/output-data-config-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 871 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
33
34
35
36
37
{
"name": "pimcore/output-data-config-toolkit-bundle",
"license": "GPL-3.0+",
"type": "pimcore-bundle",
"require": {
"pimcore/pimcore": "^11.0",
"symfony/config": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/event-dispatcher": "^6.2",
"symfony/event-dispatcher-contracts": "^3.0",
"symfony/http-foundation": "^6.2",
"symfony/http-kernel": "^6.2",
"symfony/routing": "^6.2",
"symfony/templating": "^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.10.5",
"phpstan/phpstan-symfony": "^1.2.20"
},
"autoload": {
"psr-4": {
"OutputDataConfigToolkitBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"extra": {
"pimcore": {
"bundles": [
"OutputDataConfigToolkitBundle\\OutputDataConfigToolkitBundle"
]
}
}
}