-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
40 lines (40 loc) · 977 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
38
39
40
{
"name": "pimcore/output-data-config-toolkit-bundle",
"license": "GPL-3.0+",
"type": "pimcore-bundle",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"pimcore/pimcore": "^11.2 || ^12.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.3",
"symfony/http-kernel": "^6.2",
"symfony/routing": "^6.2",
"symfony/templating": "^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.12.15",
"phpstan/phpstan-symfony": "^1.2.20"
},
"autoload": {
"psr-4": {
"OutputDataConfigToolkitBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"extra": {
"pimcore": {
"bundles": [
"OutputDataConfigToolkitBundle\\OutputDataConfigToolkitBundle"
]
}
}
}