-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.37 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
{
"name": "zfr/zfr-mail",
"type": "library",
"license": "MIT",
"description" : "Lightweight abstraction around common mail API",
"keywords": [
"mail",
"middleware",
"expressive",
"postmark"
],
"homepage": "https://github.com/zf-fr/zfr-mail",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Florent Blaison",
"email": "[email protected]",
"homepage": "https://www.hopwork.fr/profile/florentblaison"
}
],
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "^6.0",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"squizlabs/php_codesniffer": "^2.3",
"zfr/zfr-aws-utils": "^1.1"
},
"suggest": {
"zfr/zfr-aws-utils": "If you need to use Amazon SES"
},
"autoload": {
"psr-4": {
"ZfrMail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrMailTest\\": "test/"
}
},
"scripts": {
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"extra": {
"zf": {
"config-provider": "ZfrMail\\ConfigProvider"
}
}
}