forked from spryker/checkout-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.48 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
{
"name": "spryker/checkout-rest-api",
"type": "library",
"description": "CheckoutRestApi module",
"license": "proprietary",
"require": {
"php": ">=7.3",
"spryker/calculation": "^4.0.0",
"spryker/cart": "^5.0.0 || ^7.0.0",
"spryker/carts-rest-api": "^2.2.0 || ^3.0.0 || ^5.0.0",
"spryker/checkout": "^4.0.0 || ^6.0.0",
"spryker/checkout-rest-api-extension": "^1.5.0",
"spryker/customer": "^7.11.0",
"spryker/glossary-storage": "^1.0.0",
"spryker/glue-application": "^1.2.0",
"spryker/glue-application-extension": "^1.0.0",
"spryker/kernel": "^3.30.0",
"spryker/payment": "^5.0.0",
"spryker/quote": "^2.0.0",
"spryker/shipment": "^7.0.0 || ^8.0.0",
"spryker/symfony": "^3.0.0",
"spryker/zed-request": "^3.0.0"
},
"require-dev": {
"spryker/code-sniffer": "*",
"spryker/product": "*",
"spryker/propel": "*",
"spryker/stock": "*",
"spryker/testify": "*"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"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": "3.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}