-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (51 loc) · 1.64 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
46
47
48
49
50
51
{
"name": "ndx/product-reorder",
"keywords": [],
"description": "Reorder products from accounts page",
"version": "66.1.0",
"type": "shopware-platform-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "new-data-services GmbH",
"role": "Manufacturer"
}
],
"require": {
"php": "^8.2",
"shopware/core": ">=6.6.0.0-dev <6.7.0.0",
"shopware/administration": ">=6.6.0.0-dev <6.7.0.0",
"shopware/storefront": ">=6.6.0.0-dev <6.7.0.0"
},
"extra": {
"shopware-plugin-class": "Nds\\ProductReorder\\NdsProductReorder",
"copyright": "(c) by new-data-services GmbH",
"plugin-icon": "src/Resources/config/plugin.png",
"label": {
"de-DE": "Produktnachbestellungen",
"en-GB": "Product reorders"
},
"description": {
"de-DE": "Mit der Shopware 6 App Produktnachbestellungen können Sie einzelne Produkte Ihrer vorangegangenen Bestellungen aus Ihrem Kundenkonto heraus nachbestellen.",
"en-GB": "With the Shopware 6 app Product reorders you can reorder already ordered products of your previous purchases from your customer account."
},
"manufacturerLink": {
"de-DE": "https://new-data-services.de",
"en-GB": "https://new-data-services.de"
},
"supportLink": {
"de-DE": "",
"en-GB": ""
}
},
"autoload": {
"psr-4": {
"Nds\\ProductReorder\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}