-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.13 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
{
"name": "kiwee/shopware-storefront-build-config",
"description": "Updates storefront build config to load it from instead of database.",
"type": "shopware-platform-plugin",
"authors": [
{
"name": "Kiwee Software sp. z o.o."
}
],
"require": {
"shopware/storefront": "^6.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kiwee\\KiweeStorefrontBuildConfig\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Kiwee\\KiweeStorefrontBuildConfig\\KiweeStorefrontBuildConfig",
"copyright": "Kiwee Software sp. z o.o.",
"label": {
"de-DE": "KiweeStorefrontBuildConfig",
"en-GB": "KiweeStorefrontBuildConfig"
},
"description": {
"de-DE": "Das Plugin aktualisiert die Storefront-Build-Konfiguration, um sie aus lokalen Dateien statt aus der Datenbank zu laden.",
"en-GB": "Updates storefront build config to load it from files instead of database."
},
"manufacturerLink": {
"de-DE": "https://kiwee.eu/de",
"en-GB": "https://kiwee.eu/"
},
"supportLink": {
"de-DE": "https://kiwee.eu/de",
"en-GB": "https://kiwee.eu/"
}
}
}