forked from stefanpoensgen/SptecOrderComments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.24 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
{
"name": "sptec/order-comments",
"description": "Add comments to an order",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "0.1.0",
"autoload": {
"psr-4": {
"SptecOrderComments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SptecOrderComments\\Test\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "SptecOrderComments\\SptecOrderComments",
"label": {
"de-DE": "Kommentare zur Bestellung",
"en-GB": "Comments to the order"
},
"description": {
"de-DE": "Erlaubt es Kommentare zur Bestellung zu speicher.",
"en-GB": "Allows to save comments about the order."
},
"manufacturerLink": {
"de-DE": "https://github.com/stefanpoensgen/SptecOrderComments",
"en-GB": "https://github.com/stefanpoensgen/SptecOrderComments"
},
"supportLink": {
"de-DE": "https://github.com/stefanpoensgen/SptecOrderComments/issues",
"en-GB": "https://github.com/stefanpoensgen/SptecOrderComments/issues"
}
},
"require": {
"shopware/core": "~6.4",
"shopware/administration": "~6.4"
}
}