-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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": "imi/shopware6-category-duplicator",
"description": "Duplicates a full category subtree",
"type": "shopware-platform-plugin",
"authors": [
{
"name": "iMi digital GmbH"
}
],
"require": {
"shopware/core": "~6.6.0"
},
"license": "AGPL-3.0-or-later",
"autoload": {
"psr-4": {
"iMidiCategoryDuplicator\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "iMidiCategoryDuplicator\\iMidiCategoryDuplicator",
"copyright": "iMi digital GmbH",
"label": {
"de-DE": "iMidiCategoryDuplicator",
"en-GB": "iMidiCategoryDuplicator"
},
"description": {
"de-DE": "Duplicates a full category subtree",
"en-GB": "Duplicates a full category subtree"
},
"manufacturerLink": {
"de-DE": "https://www.imi-digital.de/de/",
"en-GB": "https://www.imi-digital.de/en/"
},
"supportLink": {
"de-DE": "https://github.com/iMi-digital/shopware6-category-duplicator/issues",
"en-GB": "https://github.com/iMi-digital/shopware6-category-duplicator/issues"
}
}
}