-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.41 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
43
44
45
{
"name": "sptec/order-comments",
"description": "Comments on the order",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "3.0.1",
"authors": [
{
"name": "Stefan Poensgen"
}
],
"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 on the order"
},
"description": {
"de-DE": "Mit diesem Plugin ist es möglich Kommentare zur Bestellungen über die Administration zu speichern.",
"en-GB": "This plugin adds the ability to store comments to orders in the administration."
},
"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.6.0",
"shopware/administration": "~6.6.0"
}
}