-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 2.31 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 2.31 KB
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/shop-ui",
"type": "library",
"description": "ShopUi module",
"license": "proprietary",
"require": {
"php": ">=8.3",
"spryker/form-extension": "^1.0.0",
"spryker/kernel": "^3.83.0",
"spryker/locale": "^3.0.0 || ^4.0.0",
"spryker/symfony": "^3.0.0",
"spryker/transfer": "^3.25.0",
"spryker/twig": "^3.18.0",
"spryker/twig-extension": "^1.0.0",
"spryker/util-number": "^1.0.0",
"spryker/util-sanitize-xss": "^1.0.0"
},
"require-dev": {
"spryker-eco/google-analytics": "*",
"spryker-shop/customer-page": "*",
"spryker-shop/product-group-widget": "*",
"spryker/code-sniffer": "*",
"spryker/container": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker-eco/google-analytics": "If you want to use the traceable-events-google-analytics molecule for GA4 storefront tracking.",
"spryker-shop/asset-widget": "If you want to use components from module AssetWidget",
"spryker-shop/customer-page": "If you want to use the form-sort-submitter molecule from CustomerPage in the advanced-table molecule.",
"spryker-shop/money-widget": "If you want to use widgets from module MoneyWidget",
"spryker-shop/newsletter-widget": "If you want to use components from module NewsletterWidget.",
"spryker-shop/product-group-widget": "If you want to use components from module ProductGroupColorWidget or ProductGroupWidget",
"spryker/container": "If you want to use Twig Plugins"
},
"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": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}