-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1.61 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
{
"name": "frosh/platform-filter-search",
"description": "This plugin inserts a search input above the filter options in the listing.",
"type": "shopware-platform-plugin",
"version": "3.0.0",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"require": {
"shopware/core": "~6.6.0",
"shopware/storefront": "~6.6.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"FroshPlatformFilterSearch\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "FroshPlatformFilterSearch\\FroshPlatformFilterSearch",
"copyright": "FriendsOfShopware",
"label": {
"de-DE": "Filter Suche",
"en-GB": "Filter search"
},
"description": {
"de-DE": "Dieses Plugin fügt ein Suchfeld über die Filter Optionen ein. Damit können die Optionen gefiltert werden. Eine Mindestanzahl kann konfiguriert werden.",
"en-GB": "This plugin inserts a search input above the filter options. This field is visible if the configured value is bigger than the count of the filter options."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformFilterSearch",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformFilterSearch"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformFilterSearch/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformFilterSearch/issues"
}
}
}