-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 2.39 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
{
"name": "spryker-shop/shopping-list-page",
"type": "library",
"description": "ShoppingListPage module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"spryker-shop/shop-application": "^1.2.0",
"spryker-shop/shop-ui": "^1.63.0",
"spryker-shop/shopping-list-page-extension": "^1.1.0",
"spryker/application": "^3.8.0",
"spryker/company-business-unit": "^1.5.0 || ^2.4.0",
"spryker/company-user": "^2.8.0",
"spryker/customer": "^7.4.0",
"spryker/kernel": "^3.52.0",
"spryker/locale": "^3.0.0 || ^4.0.0",
"spryker/multi-cart": "^1.1.0",
"spryker/price": "^5.0.0",
"spryker/product-storage": "^1.1.0",
"spryker/shopping-list": "^2.8.0 || ^4.9.0",
"spryker/symfony": "^3.1.0",
"spryker/twig": "^3.18.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-number": "^1.0.0",
"spryker/zed-request": "^3.4.0"
},
"require-dev": {
"spryker-shop/customer-page": "*",
"spryker-shop/product-option-widget": "*",
"spryker/code-sniffer": "*",
"spryker/router": "*"
},
"suggest": {
"spryker-shop/customer-page": "Use this module when you want to show shopping lists on a customer page",
"spryker-shop/product-configuration-shopping-list-widget": "Add the module if you want to use ProductConfigurationShoppingListItemDisplayWidget or ProductConfigurationShoppingListPageButtonWidget.",
"spryker-shop/product-option-widget": "Use this module if you want to manage product options for shopping list items.",
"spryker/router": "Use this module when you want to use the Router.",
"spryker/silex": "Use this module when using plugins that need Silex dependencies."
},
"autoload": {
"psr-4": {
"SprykerShop\\": "src/SprykerShop/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}