-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.03 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "solberlight/mailjet-bundle",
"description": "Symfony bundle for Mailjet API V3",
"homepage": "https://github.com/mailjet/mailjetBundle",
"license": "MIT",
"keywords": [
"Symfony",
"MailJet",
"API",
"V3",
"User",
"bundle"
],
"authors": [
{
"name": "Titouan BENOIT",
"email": "titouan.benoit@gmx.fr",
"homepage": "https://github.com/Nightbr"
},
{
"name": "Mailjet API",
"email": "api@mailjet.com",
"homepage": "https://dev.mailjet.com/"
}
],
"autoload": {
"psr-4": {
"Mailjet\\MailjetBundle\\": "src/"
}
},
"require": {
"php": ">=5.6",
"mailjet/mailjet-apiv3-php": "^1.4",
"mailjet/mailjet-swiftmailer": "dev-upgradeToSwiftmailer6"
},
"require-dev": {
"phpspec/phpspec": "~2@dev",
"symfony/symfony": "~2.7 | ~3.0"
},
"config": {
"bin-dir": "bin"
}
}