-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.6 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
{
"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.6.3",
"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",
"laminas/laminas-mail": "^2.9.0",
"laminas/laminas-mime": "^2.5.0",
"swissup/module-oauth2-client": "^1.0.1"
},
"require-dev": {
"slm/mail": "~1.5",
"aws/aws-sdk-php-zf2": ">=1.0.1"
},
"suggest": {
"slm/mail": "If you need to use Mandrill or Amazon SES (composer require slm/mail:~1.5)",
"aws/aws-sdk-php-zf2": "If you need to use Amazon SES (composer require aws/aws-sdk-php-zf2:>=1.0.1)"
},
"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/"
}
}
}
}