-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1005 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
{
"name": "dekalee/mailjet-bundle",
"description": "This bundle provides a transport for swiftmailer to send mail through mailjet",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas Thal",
"email": "[email protected]"
},
{
"name": "Dekalee community",
"homepage": "https://github.com/dekalee/mailjet-bundle/graphs/contributors"
}
],
"require": {
"php": ">=5.5",
"symfony/swiftmailer-bundle": "^3.2",
"mailjet/mailjet-apiv3-php": "~1.2",
"doctrine/orm": "^2.3.6"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"henrikbjorn/phpspec-code-coverage": "^2.0"
},
"suggest": {
"doctrine/doctrine-bundle": "To use the list functionnality"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Dekalee\\MailjetBundle\\": "MailjetBundle/"
}
}
}