forked from spryker/checkout-permission-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 862 Bytes
/
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
{
"name": "spryker/checkout-permission-connector",
"type": "library",
"description": "CheckoutPermissionConnector module",
"license": "proprietary",
"require": {
"php": ">=7.1",
"spryker/kernel": "^3.0.0",
"spryker/permission": "^1.0.0",
"spryker/permission-extension": "^1.0.0"
},
"require-dev": {
"spryker/checkout": "*",
"spryker/code-sniffer": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/checkout": "^4.0.0 If you want to use the permission plugin"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\": "tests/SprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}