forked from zendframework/zend-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
{
"name": "zendframework/zend-mail",
"description": "provides generalized functionality to compose and send both text and MIME-compliant multipart e-mail messages",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"mail"
],
"homepage": "https://github.com/zendframework/zend-mail",
"autoload": {
"psr-4": {
"Zend\\Mail\\": "src/"
}
},
"require": {
"php": ">=5.5",
"zendframework/zend-crypt": "~2.5",
"zendframework/zend-loader": "~2.5",
"zendframework/zend-mime": "~2.5",
"zendframework/zend-stdlib": "~2.5",
"zendframework/zend-validator": "~2.5"
},
"require-dev": {
"zendframework/zend-config": "~2.5",
"zendframework/zend-servicemanager": "~2.5",
"fabpot/php-cs-fixer": "1.7.*",
"phpunit/PHPUnit": "~4.0"
},
"suggest": {
"zendframework/zend-servicemanager": "Zend\\ServiceManager component"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.5-dev",
"dev-develop": "2.6-dev"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Mail\\": "test/"
}
}
}