-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
75 lines (75 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "coreshop/resource-bundle",
"type": "pimcore-bundle",
"description": "CoreShop - Resource Bundle",
"keywords": [
"coreshop",
"pimcore",
"ecommerce"
],
"homepage": "http://www.coreshop.org",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "CoreShop Team",
"email": "[email protected]",
"homepage": "https://www.coreshop.com/",
"role": "Developer"
},
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"doctrine/orm": "^2.9",
"doctrine/doctrine-bundle": "^2.4",
"jms/serializer-bundle": "^5.0",
"stof/doctrine-extensions-bundle": "^1.6",
"coreshop/pimcore-bundle": "^5.0",
"coreshop/locale-bundle": "^5.0",
"coreshop/optimistic-entity-lock-bundle": "^5.0",
"coreshop/registry": "^5.0",
"coreshop/resource": "^5.0",
"symfony/config": "^6.3",
"symfony/expression-language": "^6.3",
"symfony/form": "^6.3",
"symfony/framework-bundle": "^6.3",
"symfony/security-csrf": "^6.3",
"symfony/templating": "^6.3",
"symfony/twig-bundle": "^6.3",
"symfony/validator": "^6.3",
"symfony/yaml": "^6.3",
"gedmo/doctrine-extensions": "^3.11.0",
"pimcore/pimcore": "^11.5 || ^12.0",
"pimcore/admin-ui-classic-bundle": "^1.6 || ^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3.40",
"phpstan/phpstan-webmozart-assert": "^1.2.4"
},
"autoload": {
"psr-4": {
"CoreShop\\Bundle\\ResourceBundle\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"config": {
"sort-packages": true
}
}