-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.28 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": "visuel/visuelinvoiceexport",
"description": "InvoiceExport",
"version": "v1.0.0",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
{
"name": "visuellverstehen GmbH"
}
],
"require": {
"shopware/core": "*",
"shopware/administration": "*"
},
"extra": {
"shopware-plugin-class": "VisuelInvoiceExport\\VisuelInvoiceExport",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by visuellverstehen GmbH",
"label": {
"de-DE": "Rechnungsexport Plugin",
"en-GB": "Invoice export plugin"
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/visuellverstehen.html",
"en-GB": "https://store.shopware.com/en/visuellverstehen.html"
},
"description": {
"de-DE": "Plugin für den Export von Bestelldaten im CSV-Format",
"en-GB": "Invoice export plugin for CSV files"
},
"supportLink": {
"de-DE": "https://www.visuellverstehen.de/kontakt",
"en-GB": "https://www.visuellverstehen.de/kontakt"
}
},
"autoload": {
"psr-4": {
"VisuelInvoiceExport\\": "src/"
}
}
}