-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 981 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
37
38
39
40
41
{
"name": "brouzie/mailer",
"type": "library",
"description": "Mailer library with high level api",
"keywords": ["mailer"],
"homepage": "https://github.com/Koc/BrouzieMailer",
"license": "MIT",
"authors": [
{
"name": "Konstantin Myakshin",
"email": "koc-dp@yandex.ru"
}
],
"require": {
"php": ">=7.1",
"twig/twig": "^1.34|^2.4",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"swiftmailer/swiftmailer": "^5.4",
"zendframework/zend-mail": "^2.8"
},
"autoload": {
"psr-4": {
"Brouzie\\Mailer\\": ""
},
"exclude-from-classmap": [ "/Tests/" ]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}