-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
98 lines (98 loc) · 4.65 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
93
94
95
96
97
98
{
"name": "spryker-shop/customer-page",
"type": "library",
"description": "CustomerPage module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"spryker-shop/checkout-page-extension": "^1.0.0",
"spryker-shop/customer-page-extension": "^1.6.0",
"spryker-shop/shop-application": "^1.0.0",
"spryker-shop/shop-ui": "^1.84.0",
"spryker/application": "^3.8.0",
"spryker/application-extension": "^1.0.0",
"spryker/customer": "^7.30.0",
"spryker/kernel": "^3.52.0",
"spryker/log": "^3.17.0",
"spryker/product-bundle": "^4.1.0 || ^6.0.0 || ^7.0.0",
"spryker/quote": "^1.0.0 || ^2.1.0",
"spryker/router": "^1.6.0",
"spryker/sales": "^8.15.0 || ^10.0.0 || ^11.8.0",
"spryker/security-blocker": "^1.0.0",
"spryker/security-extension": "^1.0.0",
"spryker/shipment": "^7.0.0 || ^8.0.0",
"spryker/step-engine": "^3.3.0",
"spryker/store": "^1.19.0",
"spryker/symfony": "^3.1.0",
"spryker/transfer": "^3.27.0",
"spryker/twig": "^3.18.0",
"spryker/twig-extension": "^1.0.0",
"spryker/util-validate": "^1.0.0",
"spryker/validator": "^1.6.0"
},
"require-dev": {
"spryker-shop/business-on-behalf-widget": "*",
"spryker-shop/cart-note-widget": "*",
"spryker-shop/customer-reorder-widget": "*",
"spryker-shop/home-page": "*",
"spryker-shop/order-custom-reference-widget": "*",
"spryker-shop/sales-return-page": "*",
"spryker/code-sniffer": "*",
"spryker/config": "*",
"spryker/container": "*",
"spryker/event-dispatcher": "*",
"spryker/messenger": "*",
"spryker/propel": "*",
"spryker/security": "*",
"spryker/session": "*",
"spryker/silex": "*",
"spryker/storage": "*",
"spryker/storage-redis": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker-shop/business-on-behalf-widget": "If you want to use BusinessOnBehalfWidget or MenuItemBusinessOnBehalfWidgetPlugin.",
"spryker-shop/cart-note-widget": "If you want to use components from module CartNoteWidget or CartNoteOrderNoteWidgetPlugin.",
"spryker-shop/cart-reorder-page": "If you want to use CartReorderItemCheckboxWidget or CartReorderWidget.",
"spryker-shop/customer-reorder-widget": "If you want to use CustomerReorderItemCheckboxWidget or CustomerReorderWidgetPlugin, for support of Split Delivery feature use (^6.2.0)",
"spryker-shop/gift-card-widget": "If you want to use components from module GiftCardWidget.",
"spryker-shop/home-page": "Widget plugins are available for this module.",
"spryker-shop/order-custom-reference-widget": "Add the module if you want to use order custom reference functionality",
"spryker-shop/product-packaging-unit-widget": "If you want to use components from module ProductPackagingUnitWidget or OrderDetailProductPackagingUnitWidgetPlugin.",
"spryker-shop/sales-configurable-bundle-widget": "Add the module if you want to use OrderItemsConfiguredBundleWidget.",
"spryker-shop/sales-product-configuration-widget": "Add the module if you want to use ProductConfigurationOrderItemDisplayWidget.",
"spryker-shop/sales-return-page": "Add the module if you want to use return-create-link molecule.",
"spryker-shop/sales-service-point-widget": "Add the module if you want to display the service point related information.",
"spryker/config": "Use this module when using plugins that need Config dependencies.",
"spryker/messenger": "Use this module when using plugins that need Messenger dependencies.",
"spryker/shipment-cart-connector": "If you want to use shipment totals in quote or shipment source prices, min version 2.1.0",
"spryker/silex": "Use this module when using plugins that need Silex dependencies."
},
"autoload": {
"psr-4": {
"SprykerShop\\": "src/SprykerShop/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerShopTest\\": "tests/SprykerShopTest/"
}
},
"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": "2.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}