-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
81 lines (81 loc) · 2.74 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
76
77
78
79
80
81
{
"name": "spryker/product-management",
"type": "library",
"description": "ProductManagement module",
"license": "proprietary",
"require": {
"everon/collection": "^1.0.0",
"php": ">=8.2",
"spryker/availability": "^9.0.0",
"spryker/category": "^3.0.0 || ^4.0.0 || ^5.0.0",
"spryker/currency": "^3.2.0 || ^4.0.0",
"spryker/decimal-object": "^1.0.0",
"spryker/gui": "^3.48.0",
"spryker/kernel": "^3.30.0",
"spryker/locale": "^3.0.0 || ^4.0.0",
"spryker/money": "^2.4.0",
"spryker/price": "^5.0.0",
"spryker/price-product": "^2.1.0 || ^4.0.0",
"spryker/product": "^6.26.0",
"spryker/product-attribute": "^1.9.0",
"spryker/product-bundle": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^6.0.0 || ^7.0.0",
"spryker/product-category": "^4.12.1",
"spryker/product-group": "^1.0.0",
"spryker/product-image": "^3.0.0",
"spryker/product-management-extension": "^1.7.0",
"spryker/product-validity": "^1.0.0",
"spryker/propel-orm": "^1.0.0",
"spryker/stock": "^8.0.0",
"spryker/store": "^1.19.0",
"spryker/symfony": "^3.0.0",
"spryker/tax": "^4.0.0 || ^5.0.0",
"spryker/touch": "^3.0.0 || ^4.0.0",
"spryker/transfer": "^3.25.0",
"spryker/twig": "^3.16.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-text": "^1.1.0"
},
"require-dev": {
"spryker/application": "*",
"spryker/code-sniffer": "*",
"spryker/config": "*",
"spryker/container": "*",
"spryker/event-dispatcher": "*",
"spryker/form": "*",
"spryker/money-gui": "*",
"spryker/propel": "*",
"spryker/router": "*",
"spryker/testify": "*",
"spryker/util-number": "*",
"spryker/validator": "*",
"spryker/zed-navigation": "*"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/",
"SprykerTest\\Zed\\ProductManagement\\PageObject\\": "tests/SprykerTest/Zed/ProductManagement/_support/PageObject/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\": "tests/SprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}