-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
53 lines (53 loc) · 1.88 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
51
52
53
{
"name": "frosh/frosh-platform-template-mail",
"version": "3.0.5",
"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 || ~6.6.0"
},
"scripts": {
"fix-cs": "nix-shell -p php82Packages.php-cs-fixer --run 'php-cs-fixer fix [email protected],no_unused_imports .'"
}
}