-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "flagbit/shopware-smart-inbox-connector",
"description": "Extends Shopware 6 transaction mails with a Schema.org conform HTML content",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "1.0.1",
"authors": [
{
"name": "Flagbit GmbH & Co KG",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"shopware/core": "^6.2 <6.4",
"flagbit/schemaorg-email-body": "^0.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.57"
},
"autoload": {
"psr-4": {
"EinsUndEins\\MailMSmartInboxConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EinsUndEins\\MailMSmartInboxConnector\\Tests\\": "tests/"
}
},
"config": {
"platform-check": false
},
"extra": {
"shopware-plugin-class": "EinsUndEins\\MailMSmartInboxConnector\\MailMSmartInboxConnector",
"label": {
"de-DE": "1&1 Shopware Smart Inbox Connector",
"en-GB": "1&1 Shopware Smart Inbox Connector"
}
}
}