-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 1.44 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
{
"name": "ripaclub/zf2-mailman",
"description": "ZF2 module to manage email delivery",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Lorenzo Fontana",
"email": "fontanalorenzo@me.com",
"homepage": "http://github.com/fntlnz"
},
{
"name": "Leo Di Donato",
"email": "leodidonato@gmail.com",
"homepage": "http://github.com/leodido"
},
{
"name": "Leonardo Grasso",
"email": "me@leonardograsso.com",
"homepage": "http://github.com/leogr"
},
{
"name": "Antonio Visalli",
"email": "antonino.visalli@gmail.com",
"homepage": "http://github.com/visa4"
}
],
"require": {
"php": ">=5.5",
"zendframework/zend-mail": "~2.4",
"zendframework/zend-mime": "~2.4",
"zendframework/zend-stdlib": "~2.4",
"zendframework/zend-servicemanager": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.2",
"mandrill/mandrill": "~1.0.0",
"zendframework/zend-mvc": "~2.4",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"mandrill/mandrill": "Allows usage of the Mandrill transport"
},
"autoload": {
"psr-4": {
"MailMan\\": "src/",
"MailManTest\\": "tests/"
},
"classmap": [
"./Module.php"
]
},
"keywords": [
"mail",
"email",
"mail manager",
"mandrill",
"SMTP",
"memory",
"file",
"sendmail",
"message",
"messages",
"zend framework",
"zf"
]
}