-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.36 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "swissup/module-email",
"description": "Magento2 email providers integration (smtp, mandrill, amazon ses)",
"keywords": [
"email",
"smtp",
"gmail",
"mandrill",
"amazon ses",
"sendmail"
],
"type": "magento2-module",
"version": "0.7.11",
"license": "OSL-3.0",
"require": {
"psr/log": "*",
"magento/framework": "^102.0.5|^103.0",
"magento/module-backend": "^101.0|^102.0",
"magento/module-store": "^101.0",
"magento/module-ui": "^101.1",
"magento/module-email": "^101.0",
"magento/module-config": "^101.1",
"symfony/mailer": "^6.4|^7.0",
"symfony/mime": "^6.4|^7.0",
"symfony/google-mailer": "^6.4|^7.0",
"swissup/module-oauth2-client": "^1.0.5",
"zbateson/mail-mime-parser": "^3.0"
},
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Swissup\\Email\\": ""
}
},
"extra": {
"marketplace": {
"gallery": [
"https://docs.swissuplabs.com/images/marketplace/module-email.png"
],
"links": {
"docs": "https://docs.swissuplabs.com/m2/extensions/email/",
"changelog": "https://docs.swissuplabs.com/m2/extensions/email/changelog/"
}
}
}
}