forked from gsiteiovn/Shopware-6-Blog-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 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
{
"name": "sas/blog-module",
"description": "Blog Module",
"version": "1.5.4",
"type": "shopware-platform-plugin",
"keywords": ["blog", "news"],
"license":"MIT",
"authors":[
{
"name":"Shape & Shift",
"email": "hello@shapeandshift.dev",
"role": "Manufacturer"
}
],
"require": {
"shopware/core": "~6.4.0"
},
"extra": {
"shopware-plugin-class": "Sas\\BlogModule\\SasBlogModule",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by SMK Shape & Shift LTD",
"label": {
"de-DE": "Blog Module",
"en-GB": "Blog Module"
},
"description": {
"de-DE": "Blog Funktion",
"en-GB": "Blog Functionality"
},
"manufacturerLink": {
"en-GB": "https://shapeandshift.dev",
"de-DE": "https://shapeandshift.dev"
},
"supportLink": {
"de-DE": "https://shapeandshift.dev",
"en-GB": "https://shapeandshift.dev"
}
},
"autoload": {
"psr-4": {
"Sas\\BlogModule\\": "src/"
}
}
}