-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
65 lines (65 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mtymek/mt-mail",
"description": "Zend Framework e-mail module. Using this library can easily create e-mail messages from PHTML templates (with optional layouts) and send them using configurable transports. Pluggable, EventManager-driven architecture allows you to customize every aspect of the process.",
"keywords": ["zf2", "module", "email", "e-mail", "mail transport", "mail template"],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-view": "^2.2.1",
"zendframework/zend-escaper": "^2.2.1",
"zendframework/zend-mail": "^2.2.1",
"zendframework/zend-filter": "^2.2.1",
"zendframework/zend-validator": "^2.2.1",
"zendframework/zend-modulemanager": "^2.2.1",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
"zendframework/zend-eventmanager": "^2.6.0 || ^3.0.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.3",
"zendframework/zend-mvc": "^2.2.1",
"zendframework/zend-serializer": "^2.2.1",
"zendframework/zend-log": "^2.2.1",
"zendframework/zend-i18n": "^2.2.1",
"zendframework/zend-console": "^2.2.1",
"zendframework/zend-http": "^2.2.1",
"malukenho/docheader": "^0.1.6"
},
"license": "BSD 2-Clause",
"authors": [
{
"name": "Mateusz Tymek",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MtMail\\": "src/"
},
"classmap": [
"./Module.php"
]
},
"autoload-dev": {
"psr-4": {
"MtMailTest\\": "test/MtMailTest"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"coveralls": "coveralls",
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader check src/ test/"
},
"extra": {
"zf": {
"component": "MtMail"
}
}
}