forked from spryker/content-product-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.21 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
{
"name": "spryker/content-product-gui",
"type": "library",
"description": "ContentProductGui module",
"license": "proprietary",
"require": {
"php": ">=8.0",
"spryker/content-gui-extension": "^1.1.0",
"spryker/content-product": "^1.0.0",
"spryker/gui": "^3.45.0",
"spryker/kernel": "^3.30.0",
"spryker/locale": "^3.0.0",
"spryker/product": "^6.0.0",
"spryker/product-image": "^3.3.0",
"spryker/symfony": "^3.1.5",
"spryker/util-text": "^1.2.1"
},
"require-dev": {
"spryker/code-sniffer": "*"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"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
}
}
}