-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.04 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
{
"name": "brouzie/mailer-bundle",
"type": "symfony-bundle",
"description": "Brouzie Mailer integration for Symfony",
"keywords": ["mailer", "symfony", "symfony-bundle"],
"homepage": "https://github.com/Koc/BrouzieMailerBundle",
"license": "MIT",
"authors": [
{
"name": "Konstantin Myakshin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"brouzie/mailer": "dev-master",
"symfony/framework-bundle": "^2.8|^3.0",
"symfony/twig-bundle": "^2.8|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"symfony/swiftmailer-bundle": "^2.6"
},
"autoload": {
"psr-4": {
"Brouzie\\MailerBundle\\": ""
},
"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"
}
}
}