-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
85 lines (85 loc) · 2.99 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
{
"name": "spryker/customer",
"type": "library",
"description": "Customer module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"spryker/acl-merchant-portal-extension": "^1.0.0",
"spryker/authorization-extension": "^1.0.0",
"spryker/checkout-extension": "^1.2.0",
"spryker/country": "^3.1.0 || ^4.0.0",
"spryker/customer-extension": "^1.5.0",
"spryker/event-dispatcher-extension": "^1.0.0",
"spryker/gui": "^3.39.0",
"spryker/kernel": "^3.72.0",
"spryker/locale": "^3.0.0 || ^4.0.0",
"spryker/mail": "^4.6.0",
"spryker/mail-extension": "^1.0.0",
"spryker/propel": "^3.0.0",
"spryker/propel-orm": "^1.16.0",
"spryker/router": "^1.12.0",
"spryker/sequence-number": "^3.0.0",
"spryker/session": "^3.0.0 || ^4.0.0",
"spryker/store": "^1.19.0",
"spryker/symfony": "^3.0.0",
"spryker/tax-product-connector-extension": "^1.0.0",
"spryker/transfer": "^3.27.0",
"spryker/util-date-time": "^1.0.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-sanitize": "^2.0.0",
"spryker/util-text": "^1.1.0",
"spryker/util-validate": "^1.0.0",
"spryker/zed-request": "^3.0.0"
},
"require-dev": {
"spryker/application": "*",
"spryker/checkout": "*",
"spryker/code-sniffer": "*",
"spryker/container": "*",
"spryker/event-dispatcher": "*",
"spryker/form": "*",
"spryker/log": "*",
"spryker/sales": "*",
"spryker/testify": "*",
"spryker/twig": "*",
"spryker/validator": "*",
"spryker/zed-navigation": "*"
},
"suggest": {
"spryker/checkout": "If you want to use Checkout plugins.",
"spryker/container": "To use EventDispatcher plugins.",
"spryker/event-dispatcher": "To use EventDispatcher plugins.",
"spryker/log": "If you want to use Log plugins.",
"spryker/sales": "If you want customer information in sales."
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/",
"SprykerTest\\Shared\\Customer\\Helper\\": "tests/SprykerTest/Shared/Customer/_support/Helper/",
"SprykerTest\\Zed\\Customer\\PageObject\\": "tests/SprykerTest/Zed/Customer/_support/PageObject/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\": "tests/SprykerTest/"
}
},
"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/"
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}