-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jonatanrdsantos/magento2-module-email",
"description": "Easily configure Magento 2 to send transactional emails using popular SMTP servers such as Gmail, G Suite, Amazon SES, and more.",
"type": "magento2-module",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"Amazon SES",
"Amazon Simple Email Service",
"admin",
"backend",
"ecommerce",
"email",
"email marketing",
"email settings",
"gmail",
"gmail smtp",
"google ads",
"google app",
"g suite",
"how to configure magento email",
"how to setup email magento2",
"magento",
"magento 2",
"magento2",
"magento2 email",
"magento2 email setup",
"magento2 smtp",
"mandrill",
"marketing automation",
"messenger",
"send email magento2",
"sendgrid",
"sendmail",
"smtp"
],
"authors": [
{
"name": "Jonatan Santos",
"email": "jonatan.zarowny+github@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "~8.1.0",
"magento/framework": ">=103.0.0",
"magento/module-backend": ">=102.0.5",
"magento/module-config": ">=101.2.5",
"magento/module-email": ">=101.1.5"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Jonatanrdsantos\\Email\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "~9.5.20",
"phpmd/phpmd": "^2.12.0",
"phpstan/phpstan": "^1.6.8",
"squizlabs/php_codesniffer": "~3.6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}