forked from spryker-eco/heidelpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.94 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-eco/heidelpay",
"type": "library",
"description": "Heidelpay module",
"license": "MIT",
"require": {
"heidelpay/php-basket-api": "^1.0.2",
"heidelpay/php-message-code-mapper": "^1.0.1",
"heidelpay/php-payment-api": "^1.6.1",
"php": ">=7.4",
"spryker-shop/checkout-page": "^2.0.0 || ^3.0.0",
"spryker/calculation": "^4.0.0",
"spryker/checkout-extension": "^1.0.0",
"spryker/currency": "^2.0.0 || ^3.0.0",
"spryker/customer": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"spryker/kernel": "^3.30.0",
"spryker/locale": "^4.0.0",
"spryker/money": "^2.0.0",
"spryker/oms": "^7.0.0 || ^8.0.0 || ^10.0.0 || ^11.0.0",
"spryker/propel-orm": "^1.5.0",
"spryker/quote": "^1.0.0 || ^2.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": "^3.0.0",
"spryker/symfony": "^3.0.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-text": "^1.2.0",
"spryker/zed-request": "^3.0.0"
},
"require-dev": {
"phpstan/phpstan": "*",
"spryker-shop/shop-application": "*",
"spryker/application": "*",
"spryker/checkout": "*",
"spryker/code-sniffer": "*",
"spryker/country": "*",
"spryker/payment": "*",
"spryker/product": "*",
"spryker/propel": "*",
"spryker/router": "*",
"spryker/silex": "*",
"spryker/stock": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/checkout": "CheckoutPostSaveHookInterface is used.",
"spryker/payment": "Filter payment methods plugin used.",
"spryker/router": "Use this module if you want use the RouterProviderPlugin.",
"spryker-shop/shop-application": "Abstract Yves controller provider is used.",
"spryker/silex": "Silex application is used."
},
"autoload": {
"psr-4": {
"SprykerEco\\": "src/SprykerEco/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerEcoTest\\": "tests/SprykerEcoTest/"
}
},
"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/",
"stan": "phpstan analyse -c phpstan.neon -l 8 src/",
"stan-setup": "cp composer.json composer.backup && COMPOSER_MEMORY_LIMIT=-1 composer require --dev phpstan/phpstan:^0.12 && mv composer.backup composer.json"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}