-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.38 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
{
"name": "kplngi/review-image",
"description": "Image upload for customer reviews",
"version": "1.1.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Kiplingi",
"email": "[email protected]",
"homepage": "https://kiplingi.de"
}
],
"require": {
"shopware/core": "~6.4"
},
"autoload": {
"psr-4": {
"Kplngi\\ReviewImage\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Kplngi\\ReviewImage\\KplngiReviewImage",
"label": {
"de-DE": "Bild Upload für Kunden Bewertungen",
"en-GB": "Image Upload for customer reviews"
},
"description": {
"de-DE": "Die Produkt Bewertung wird um ein Upload Feld erweitert, womit Kunden Ihrer Bewertung ein optionales Bild hinzufügen können und welches dann unter der Bewertung angezeigt wird.",
"en-GB": "The product rating is extended by an upload field, with which customers can add an optional image to your rating and which is then displayed under the rating."
},
"manufacturerLink": {
"de-DE": "https://kiplingi.de",
"en-GB": "https://kiplingi.de"
},
"supportLink": {
"de-DE": "https://kiplingi.de",
"en-GB": "https://kiplingi.de"
}
}
}