-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 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
36
37
38
39
40
41
42
43
{
"name" : "email-zf2/emailzf2",
"description" : "EmailZF2 is a ZF2 module to manage the process of sending emails with templates.",
"type" : "zf2-module",
"authors" : [{
"name" : "Vincenzo Provenza",
"email" : "[email protected]",
"homepage" : "http://ilovecode.it/",
"role" : "Developer"
}
],
"keywords" : [
"email zf2",
"module zf2",
"send email"
],
"homepage" : "https://github.com/vikey89/EmailZF2",
"license" : [
"BSD-3-Clause"
],
"require" : {
"php" : ">=5.3.3",
"zendframework/zendframework" : "2.*"
},
"autoload" : {
"psr-0" : {
"EmailZF2" : "src"
},
"classmap" : [
"./Module.php"
]
},
"minimum-stability" : "beta",
"support" : {
"email" : "[email protected]"
},
"repositories" : [{
"name" : "EmailZF2",
"type" : "git",
"url" : "https://github.com/vikey89/EmailZF2.git"
}
]
}