forked from spryker/product-page-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.54 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
{
"name": "spryker/product-page-search",
"type": "library",
"description": "ProductPageSearch module",
"license": "proprietary",
"require": {
"php": ">=8.1",
"spryker/catalog-price-product-connector": "^1.1.0",
"spryker/category": "^4.3.0 || ^5.0.0",
"spryker/error-handler": "^2.0.0",
"spryker/event-behavior": "^1.14.0",
"spryker/kernel": "^3.49.0",
"spryker/laminas": "^1.0.0",
"spryker/locale": "^3.3.0 || ^4.0.0",
"spryker/price": "^5.3.0",
"spryker/price-product": "^2.8.0 || ^4.0.0",
"spryker/product": "^6.16.0",
"spryker/product-category": "^4.5.0",
"spryker/product-image": "^3.8.0",
"spryker/product-page-search-extension": "^1.6.0",
"spryker/product-search": "^5.15.0",
"spryker/propel-orm": "^1.5.0",
"spryker/publisher-extension": "^1.0.0",
"spryker/search": "^7.0.0 || ^8.0.0",
"spryker/store": "^1.7.0",
"spryker/symfony": "^3.0.0",
"spryker/synchronization-behavior": "^1.0.0",
"spryker/synchronization-extension": "^1.0.0",
"spryker/transfer": "^3.25.0",
"spryker/url": "^3.3.0",
"spryker/util-encoding": "^2.0.0",
"spryker/util-sanitize": "^2.1.0"
},
"require-dev": {
"spryker/code-sniffer": "*",
"spryker/container": "*",
"spryker/event": "*",
"spryker/product-attribute": "*",
"spryker/propel": "*",
"spryker/queue": "*",
"spryker/rabbit-mq": "*",
"spryker/storage": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/elastica": "If you want to use Elasticsearch plugins, minimum required version: 4.0.0",
"spryker/event": "If you want to use Event plugins, minimum required version: 2.1.0"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"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": "3.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}