-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "sbu/sbuorderadvancedfilter",
"description": "Order Advanced Filter plugin for Shopware 6",
"version": "1.0.1",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Duc Le Duc",
"email": "duc.leduc92@gmail.com"
}
],
"require": {
"shopware/core": "^6.3"
},
"extra": {
"shopware-plugin-class": "Sbu\\OrderAdvancedFilter\\SbuOrderAdvancedFilter",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "Erweiterter Filter für Bestellungen in Shopware 6",
"en-GB": "Order Advanced Filter for Shopware 6"
}
},
"autoload": {
"psr-4": {
"Sbu\\OrderAdvancedFilter\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"prefer-stable": true
}