forked from juriansluiman/Soflomo-Mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 913 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
{
"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": "[email protected]",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-mail": "~2.0",
"zendframework/zend-servicemanager": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.0@alpha",
"zendframework/zendframework": "~2.0"
},
"autoload": {
"psr-4": {
"Soflomo\\Mail\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}