-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
52 lines (52 loc) · 1.39 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
{
"name": "mailjet/mailjet-bundle",
"description": "Symfony bundle for Mailjet API V3",
"type": "symfony-bundle",
"homepage": "https://github.com/mailjet/mailjetBundle",
"license": "MIT",
"keywords": [
"Symfony",
"MailJet",
"API",
"V3",
"User",
"bundle"
],
"authors": [
{
"name": "Titouan BENOIT",
"email": "[email protected]",
"homepage": "https://github.com/Nightbr"
},
{
"name": "Mailjet API",
"email": "[email protected]",
"homepage": "https://dev.mailjet.com/"
}
],
"autoload": {
"psr-4": {
"Mailjet\\MailjetBundle\\": "src/"
}
},
"require": {
"php": ">=7.1.3",
"mailjet/mailjet-apiv3-php": "^1.2",
"mailjet/mailjet-swiftmailer": "^2.0",
"symfony/config": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/routing": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"require-dev": {
"phpspec/phpspec": "^5.1|^6.0|^7.0"
},
"config": {
"bin-dir": "bin"
}
}