-
Notifications
You must be signed in to change notification settings - Fork 110
/
composer.json
57 lines (57 loc) · 1.33 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "pimcore/data-hub",
"license": "GPL-3.0+",
"type": "pimcore-bundle",
"description": "Pimcore Datahub",
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
},
"allow-plugins": {
"symfony/runtime": true
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"pimcore/admin-ui-classic-bundle": "^1.0",
"pimcore/pimcore": "^11.2",
"pimcore/compatibility-bridge-v10": "^1.0",
"webonyx/graphql-php": "^15.2.3"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^6",
"codeception/codeception": "^5.0.3",
"codeception/phpunit-wrapper": "^9",
"codeception/module-asserts": "^2",
"codeception/module-symfony": "^3.1.0",
"symfony/dotenv": "^6.2",
"symfony/runtime": "^6.4"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\DataHubBundle\\": "src/",
"Pimcore\\": "core-extension/Pimcore/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\DataHubBundle\\Tests\\": "tests"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\DataHubBundle\\PimcoreDataHubBundle"
]
}
}
}