-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.49 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
{
"name": "semaio/shopware-plugin-stock-updater-fix",
"description": "Fix StockUpdater to be independent from order status.",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "semaio GmbH",
"email": "[email protected]",
"role": "Manufacturer"
}
],
"require": {
"shopware/core": "~6.4.0"
},
"autoload": {
"psr-4": {
"Semaio\\StockUpdaterFix\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Semaio\\StockUpdaterFix\\SemaioStockUpdaterFix",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "semaio GmbH",
"label": {
"de-DE": "StockUpdater Fix",
"en-GB": "StockUpdater Fix"
},
"description": {
"de-DE": "Mit diesem Plugin werden die Lagerbestandsfelder der Produkte synchron gehalten und sind nicht länger vom Bestellstatus abhängig.",
"en-GB": "With this plugin you stock fields on product level will be kept synchronously and are no longer dependent on order status."
},
"manufacturerLink": {
"en-GB": "https://semaio.com",
"de-DE": "https://semaio.com"
},
"supportLink": {
"de-DE": "https://semaio.com",
"en-GB": "https://semaio.com"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": false
}
}
}