-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 2.15 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 2.15 KB
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
51
52
53
54
55
56
57
{
"name": "frosh/frosh-platform-template-mail",
"version": "4.0.0",
"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.8 || ~6.6.0 || ~6.7.0"
},
"scripts": {
"format": "docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension format /ext",
"check": [
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against lowest --full /ext",
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against highest --full /ext"
]
}
}