-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.93 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.93 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
63
64
65
66
67
{
"name": "coreshop/store-bundle",
"type": "pimcore-bundle",
"description": "CoreShop - Store Bundle",
"keywords": [
"coreshop",
"pimcore",
"ecommerce"
],
"homepage": "https://www.coreshop.com",
"license": "proprietary",
"authors": [
{
"name": "CoreShop Team",
"email": "info@coreshop.com",
"homepage": "https://www.coreshop.com/",
"role": "Developer"
},
{
"name": "Dominik Pfaffenbauer",
"email": "dominik@pfaffenbauer.at",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"coreshop/resource-bundle": "^5.0",
"coreshop/currency-bundle": "^5.0",
"coreshop/theme-bundle": "^5.0",
"coreshop/store": "^5.0",
"pimcore/pimcore": "^12.0"
},
"require-dev": {
"pimcore/studio-ui-bundle": "^2025.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0"
},
"autoload": {
"psr-4": {
"CoreShop\\Bundle\\StoreBundle\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "5.0-dev",
"dev-master": "5.0-dev"
}
},
"config": {
"sort-packages": true
},
"suggest": {
"pimcore/studio-ui-bundle": "^0.6.30 - Modern React-based Studio UI for Pimcore (recommended)",
"pimcore/admin-ui-classic-bundle": "^2.0 - Classic ExtJS-based admin interface for Pimcore (legacy)",
"pimcore/elasticsearch-client": "Allows to use ElasticSearch as your index engine.",
"pimcore/opensearch-client": "Allows to use OpenSearch as your index engine."
}
}