forked from FriendsOfShopware/FroshPlatformTemplateMail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.73 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
{
"name": "frosh/frosh-platform-template-mail",
"version": "2.0.2",
"type": "shopware-platform-plugin",
"description": "Load mail templates from theme",
"keywords": [
"mail",
"shopware",
"frosh"
],
"license": "MIT",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"autoload": {
"psr-4": {
"Frosh\\TemplateMail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Frosh\\TemplateMail\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "Frosh\\TemplateMail\\FroshPlatformTemplateMail",
"label": {
"de-DE": "Mail Templates aus dem Theme verwenden",
"en-GB": "Use mail templates from theme"
},
"description": {
"de-DE": "Erlaubt es die Mail Templates in das Theme abzulegen. Dadurch sind sie versioniert und leichter zu deployen zwischen mehreren Umgebungen. Ebenfalls wird MJML unterstützt",
"en-GB": "Allows to store the mail templates in the theme. This makes them versioned and easier to deploy between multiple environments. Also MJML is supported."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformTemplateMail",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformTemplateMail"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformTemplateMail/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformTemplateMail/issues"
}
},
"require": {
"shopware/core": "~6.5.0"
}
}