-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 2.06 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
{
"name": "spryker-eco/ratepay",
"description": "Ratepay module",
"license": "MIT",
"require": {
"php": ">=7.2",
"spryker/checkout": "^3.0.0 || ^4.0.0 || ^6.0.0",
"spryker/config": "^3.0.0",
"spryker/calculation": "^4.0.0",
"spryker/glossary": "^3.0.0",
"spryker/guzzle": "^2.1.0",
"spryker/kernel": "^3.0.0",
"spryker/log": "^3.0.0",
"spryker/messenger": "^3.0.0",
"spryker/money": "^2.0.0",
"spryker/monolog": "^2.0.0",
"spryker/oms": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^10.0.0 || ^11.0.0",
"spryker/payment": "^3.0.0 || ^4.0.0 || ^5.0.0",
"spryker/sales": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^10.0.0 || ^11.0.0",
"spryker/session": "^3.0.0 || ^4.0.0",
"spryker/step-engine": "^2.0.0 || ^3.0.0",
"spryker/symfony": "^3.1.0",
"spryker/zed-request": "^3.0.0"
},
"require-dev": {
"spryker/code-sniffer": "*",
"spryker/country": "*",
"spryker/customer": "*",
"spryker/propel": "*",
"spryker/propel-orm": "*",
"spryker/silex": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/installer": "If you want to use Installer plugins you need to install spryker/installer.",
"spryker/cart": "If you want to use Cart plugins you need to install spryker/cart."
},
"autoload": {
"psr-4": {
"SprykerEco\\": "src/SprykerEco/",
"SprykerEcoTest\\Zed\\Ratepay\\Business\\": "tests/SprykerEcoTest/Zed/Ratepay/Business/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerEcoTest\\": "tests/SprykerEcoTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 600,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}