-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
52 lines (52 loc) · 1.98 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
{
"name": "frosh/product-compare",
"description": "A Simple Product Compare plugin for Shopware 6",
"version": "3.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "FriendsOfShopware",
"email": "[email protected]"
},
{
"name": "Thuong Le",
"email": "[email protected]"
}
],
"require": {
"shopware/core": "~6.6",
"shopware/storefront": "~6.6"
},
"extra": {
"shopware-plugin-class": "Frosh\\FroshProductCompare\\FroshProductCompare",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by Justa Vin<[email protected]>",
"label": {
"de-DE": "Ein einfaches Produktvergleichs-Plugin für Shopware 6",
"en-GB": "A Simple Product Compare plugin for Shopware 6"
},
"description": {
"de-DE": "Kostenloses Open Source Plugin für Shopware 6. Ermöglicht es bis zu 4 Produkte miteinander zu vergleichen. Vergleichsliste auf der Produktvergleichsseite oder auf der Artikelseite.",
"en-GB": "Free Shopware 6 open source extension which allows to compare up to 4 products with each other. Show compare list in products compare page or in product detail's cross-selling."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshProductCompare",
"en-GB": "https://github.com/FriendsOfShopware/FroshProductCompare"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshProductCompare/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshProductCompare/issues"
}
},
"autoload": {
"psr-4": {
"Frosh\\FroshProductCompare\\": "src/"
}
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"prefer-stable": true
}