-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
48 lines (48 loc) · 1.36 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":"sas/variant-switch",
"description":"Show a variant switch within the listing and cart",
"type":"shopware-platform-plugin",
"license":"MIT",
"version":"1.1.1",
"keywords":[
"variant",
"shopware"
],
"authors":[
{
"name":"Shape & Shift",
"role":"Manufacturer",
"homepage":"https://shapeandshift.dev"
}
],
"autoload":{
"psr-4":{
"SasVariantSwitch\\":"src/"
}
},
"require":{
"shopware/core":"^6.4",
"shopware/storefront":"^6.4"
},
"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"
}
}
}