-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 3.47 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "spryker-eco/unzer",
"type": "library",
"description": "Unzer module",
"license": "MIT",
"require": {
"php": ">=8.1",
"spryker-eco/unzer-api": "^1.1.0",
"spryker-shop/shop-ui": "^1.56.0",
"spryker/calculation": "^4.0.0",
"spryker/cart-extension": "^4.1.0",
"spryker/checkout-extension": "^1.4.0",
"spryker/kernel": "^3.30.0",
"spryker/locale": "^3.8.1 || ^4.0.0",
"spryker/merchant": "^3.1.0",
"spryker/oms": "^11.0.0",
"spryker/payment": "^5.8.0",
"spryker/payment-extension": "^1.0.0",
"spryker/propel-orm": "^1.6.0",
"spryker/quote": "^2.0.0",
"spryker/refund": "^5.4.0",
"spryker/sales": "^11.27.0",
"spryker/shipment": "^8.4.0",
"spryker/step-engine": "^3.1.0",
"spryker/store": "^1.0.0",
"spryker/symfony": "^3.7.0",
"spryker/transfer": "^3.27.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-text": "^1.5.0",
"spryker/vault": "^1.2.0",
"spryker/zed-request": "^3.0.0"
},
"require-dev": {
"codeception/module-asserts": "*",
"phpstan/phpstan": "*",
"spryker/application": "*",
"spryker/code-sniffer": "*",
"spryker/customer": "*",
"spryker/error-handler": "*",
"spryker/event": "*",
"spryker/log": "*",
"spryker/monolog": "*",
"spryker/propel": "*",
"spryker/queue": "*",
"spryker/router": "*",
"spryker/state-machine": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/checkout": "Use this module if you want to use Checkout plugins.",
"spryker/router": "Use this module if you want use the RouterProviderPlugin."
},
"autoload": {
"psr-4": {
"SprykerEco\\": "src/SprykerEco/",
"SprykerEcoTest\\Zed\\Unzer\\Helper\\": "tests/SprykerEcoTest/Zed/Unzer/_support/Helper/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerEcoTest\\": "tests/SprykerEcoTest/",
"Config\\Module\\": "vendor/spryker/config/tests/_support/Module",
"Oms\\Module\\": "vendor/spryker/oms/tests/_support/Module",
"Propel\\Module\\": "vendor/spryker/propel/tests/_support/Module",
"Sales\\Module\\": "vendor/spryker/sales/tests/_support/Module",
"Transfer\\Module\\": "vendor/spryker/transfer/tests/_support/Module"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/",
"stan": "vendor/bin/phpstan analyse src/",
"test": "vendor/bin/codecept run --quiet --fail-fast --no-exit",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json"
},
"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
}
}
}