forked from s-ichikawa/laravel-sendgrid-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 883 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": "s-ichikawa/laravel-sendgrid-driver",
"description": "This library adds a 'sendgrid' mail driver to Laravel.",
"keywords": ["laravel", "sendgrid"],
"license": "MIT",
"require": {
"illuminate/mail": "~5.1",
"guzzlehttp/guzzle": "~5.3|~6.2"
},
"require-dev": {
"illuminate/container": "~5.1",
"illuminate/filesystem": "~5.1",
"phpunit/phpunit": ">=4.0"
},
"autoload": {
"psr-4": {
"Sichikawa\\LaravelSendgridDriver\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php"
]
},
"authors": [
{
"name": "shingo.ichikawa",
"email": "ichikawa.shingo.0829@gmail.com"
}
],
"suggest": {
"s-ichikawa/sendgrid-api-builder": "support to build json for sendgrid api"
}
}