-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (51 loc) · 1.38 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (51 loc) · 1.38 KB
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
46
47
48
49
50
51
52
53
{
"name": "t4web/mail",
"description": "ZF2 Module. Send mails, managing mail templates and mail log.",
"type": "zf2-module",
"license": "BSD-3-Clause",
"keywords": [ "zf2", "zf2 module", "module", "mail" ],
"homepage": "https://github.com/t4web/Mail",
"require": {
"php": ">=5.5",
"zendframework/zend-db": "^2.5",
"zendframework/zend-modulemanager": "^2.5",
"zendframework/zend-servicemanager": "^2.5",
"zendframework/zend-console": "^2.5",
"zendframework/zend-mail": "^2.5",
"zendframework/zend-mime": "^2.5",
"zendframework/zend-mvc": "^2.5",
"zendframework/zend-text": "^2.5",
"zendframework/zend-view": "^2.5",
"t4web/admin": "dev-master",
"t4web/crud": "~1.0.0",
"t4web/event-subscriber": "~1.0.0",
"t4web/domain-module": "~1.2.0",
"t4web/default-service": "~1.0.0"
},
"require-dev" : {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"suggest": {
"acelaya/zf2-acmailer": "Mail sending module for Zend Framework 2 with support for file attachment and template email composition"
},
"autoload": {
"psr-4": {
"T4web\\Mail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T4web\\MailTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs -n",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}