forked from Shape-and-Shift/shopware-variant-switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.46 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
52
53
{
"name":"sas/variant-switch",
"description":"Show a variant switch within the listing and cart",
"type":"shopware-platform-plugin",
"license":"MIT",
"version":"2.0.0",
"keywords":[
"variant",
"shopware"
],
"authors":[
{
"name":"Shape & Shift",
"role":"Manufacturer",
"homepage":"https://shapeandshift.dev"
}
],
"autoload":{
"psr-4":{
"SasVariantSwitch\\":"src/"
}
},
"require":{
"shopware/core":"^6.5",
"shopware/storefront":"^6.5"
},
"extra":{
"shopware-plugin-class":"SasVariantSwitch\\SasVariantSwitch",
"plugin-icon":"src/Resources/config/plugin.png",
"copyright":"(c) by Shape & Shift",
"description":{
"de-DE":"Schnellwechsel der Produktvariante im Listing als auch im Warenkorb",
"en-GB":"Show a variant switch within the listing and cart"
},
"label":{
"de-DE":"Varianten switch im Listing",
"en-GB":"Variant switch within the Listing"
},
"manufacturerLink":{
"en-GB":"https://shapeandshift.dev",
"de-DE":"https://shapeandshift.dev"
},
"supportLink":{
"de-DE":"https://shapeandshift.dev",
"en-GB":"https://shapeandshift.dev"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}