-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
40 lines (40 loc) · 1.05 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
{
"name": "vienthuong/recently-viewed-products",
"description": "Recently viewed products plugin",
"type": "shopware-platform-plugin",
"version": "4.0.0",
"license": "MIT",
"authors": [
{
"name": "Thuong Le",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"RecentlyViewedProduct\\": "src/"
}
},
"require": {
"shopware/core": "^6.6.0.0",
"shopware/storefront": "^6.6.0.0"
},
"extra": {
"shopware-plugin-class": "RecentlyViewedProduct\\RecentlyViewedProduct",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by Thuong Le<[email protected]>",
"label": {
"de-DE": "Kürzlich angesehene Produkte für SW6",
"en-GB": "Recently viewed products for SW6"
},
"description": {
"de-DE": "Kunden kürzlich angesehene Produkte anzeigen",
"en-GB": "Show customer recently viewed products"
}
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"prefer-stable": true
}