-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.11 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 2.11 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
58
59
60
61
{
"name": "frosh/mail-platform-archive",
"version": "3.6.0",
"description": "Mail Archive",
"type": "shopware-platform-plugin",
"license": "MIT",
"keywords": [
"mail",
"archive"
],
"autoload": {
"psr-4": {
"Frosh\\MailArchive\\": "src/"
}
},
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"extra": {
"shopware-plugin-class": "Frosh\\MailArchive\\FroshPlatformMailArchive",
"plugin-icon": "src/Resources/config/plugin.png",
"label": {
"de-DE": "Mail Archive",
"en-GB": "Mail Archive"
},
"description": {
"de-DE": "Mit diesem Plugin erhalten Sie ein einfaches durchsuchbares Archiv für E-Mails, die aus Shopware versendet werden. Die E-Mails sind erreichbar: Einstellungen/Erweiterungen/Main Archiv.",
"en-GB": "With this plugin you get a simple searchable archive for emails that are sent from Shopware. The e-mails can be found via the menu path Settings/Extensions/Main Archive.."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformMailArchive",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformMailArchive"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformMailArchive/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformMailArchive/issues"
}
},
"require": {
"shopware/core": "~6.6.0 || ~6.7.0",
"zbateson/mail-mime-parser": "^3.0"
},
"require-dev": {
"frosh/tools": ">2.1.3"
},
"conflict": {
"frosh/tools": "<2.1.3"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"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 --full /ext"
}
}