-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
34 lines (34 loc) · 940 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
{
"name": "mailjet/mailjet-swiftmailer",
"description": "A SwiftMailer transport implementation for Mailjet",
"type": "library",
"keywords": ["mailjet", "swiftmailer"],
"homepage": "https://github.com/mailjet/MailjetSwiftMailer",
"require": {
"php": ">=7.0",
"mailjet/mailjet-apiv3-php": "^1.2",
"swiftmailer/swiftmailer": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/config": ">=2.0|~3.0"
},
"license": "MIT",
"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\\MailjetSwiftMailer\\": ""
}
}
}