-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 974 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 974 Bytes
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
{
"name" : "muckiware/search-plugin",
"description" : "Shopware 6 search extension plugin for Elasticsearch server integration",
"version": "v0.3.0",
"type" : "shopware-platform-plugin",
"license" : "MIT",
"authors": [
{
"name": "muckiware"
}
],
"extra" : {
"shopware-plugin-class" : "MuckiSearchPlugin\\MuckiSearchPlugin",
"copyright" : "(c) by muckiware",
"label" : {
"de-DE" : "Shopware 6 search extension plugin for Elasticsearch server integration",
"en-GB" : "Shopware 6 search extension plugin for Elasticsearch server integration"
}
},
"require" : {
"php" : ">= 8.1",
"shopware/core": "^6.5.3",
"shopware/administration": "^6.5.3",
"shopware/storefront": "^6.5.3",
"elasticsearch/elasticsearch": "^8.11"
},
"autoload" : {
"psr-4" : {
"MuckiSearchPlugin\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"MuckiSearchPlugin\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}