-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
36 lines (36 loc) · 936 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": "jurian@soflomo.com",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-mail": "^2.0 || ^3.0",
"zendframework/zend-servicemanager": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.0",
"zendframework/zendframework": "^2.7 || ^3.0"
},
"autoload": {
"psr-4": {
"Soflomo\\Mail\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}