-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
26 lines (26 loc) · 859 Bytes
/
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
{
"name": "robin/productsfaq",
"description": "Assign frequently asked questions to individual products",
"version": "v1.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"require": {
"shopware/core": "6.4.*"
},
"extra": {
"shopware-plugin-class": "ProductsFAQ\\ProductsFAQ",
"label": {
"de-DE": "Produkte F.A.Q.",
"en-GB": "Products F.A.Q."
},
"description": {
"de-DE": "Dieses Plugin lässt Sie individuelle häufig gestellte Fragen zu individuellen Produkten in der Administration zuweisen",
"en-GB": "This plugins lets you configure individual frequently asked questions to individual products in the administration"
}
},
"autoload": {
"psr-4": {
"ProductsFAQ\\": "src/"
}
}
}