-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.38 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
{
"name": "coreshop/shipping-bundle",
"type": "pimcore-bundle",
"description": "CoreShop - Shipping 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.org/",
"role": "Developer"
},
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"coreshop/shipping": "^4.0",
"coreshop/registry": "^4.0",
"coreshop/address-bundle": "^4.0",
"coreshop/rule-bundle": "^4.0",
"coreshop/resource-bundle": "^4.0",
"coreshop/money-bundle": "^4.0",
"coreshop/currency-bundle": "^4.0",
"pimcore/pimcore": "^11.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\\ShippingBundle\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"config": {
"sort-packages": true
}
}