forked from Soflomo/Mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 751 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 751 Bytes
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
{
"name": "soflomo/mail",
"description": "Module to to ease the use of sending e-mail messages in Zend Framework 2",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"mail"
],
"homepage": "https://github.com/Soflomo/Mail",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@soflomo.com",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-mail": "~2.0",
"zendframework/zend-servicemanager": "~2.0"
},
"autoload": {
"psr-0": {
"Soflomo\\Mail": "src/"
},
"classmap": [
"./Module.php"
]
}
}