forked from spryker/orders-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.7 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.7 KB
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
{
"name": "spryker/orders-rest-api",
"type": "library",
"description": "OrdersRestApi module",
"license": "proprietary",
"require": {
"php": ">=8.3",
"spryker/container": "^1.10.0",
"spryker/glue-application": "^1.0.0",
"spryker/glue-application-authorization-connector-extension": "^1.0.0",
"spryker/glue-application-extension": "^1.0.0",
"spryker/kernel": "^3.30.0",
"spryker/orders-rest-api-extension": "^1.1.0",
"spryker/sales": "^11.22.0",
"spryker/symfony": "^3.0.0",
"spryker/transfer": "^3.42.0"
},
"require-dev": {
"spryker/api-platform": "^1.0.0",
"spryker/code-sniffer": "*"
},
"suggest": {
"spryker/api-platform": "Required to expose API Platform resources.",
"spryker/auth-rest-api": "If you want to authorize and authenticate customers via access tokens.",
"spryker/authorization": "If you want to use multiple authorization strategies, minimum required version: 1.2.0."
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"conflict": {
"spryker/api-platform": "<1.23.0"
}
}