forked from genkgo/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 856 Bytes
/
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
{
"name": "genkgo/mail",
"description": "Library to send e-mails over different transports and protocols using immutable messages and streams",
"license": "MIT License",
"require": {
"php": "^7.1",
"ext-intl": "*"
},
"require-dev": {
"phpunit/phpunit": "~6",
"predis/predis": "~1.0",
"phpstan/phpstan": "^0.7.0",
"ext-openssl": "*"
},
"authors": [
{
"name": "frederik",
"email": "[email protected]"
}
],
"suggest": {
"predis/predis": "Use redis to queue messages",
"ext-openssl": "Sign your messages with DKIM"
},
"autoload": {
"psr-4": {
"Genkgo\\Mail\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"Genkgo\\TestMail\\": ["test"]
}
}
}