forked from s-ichikawa/laravel-sendgrid-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.32 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
{
"name": "s-ichikawa/laravel-sendgrid-driver",
"description": "This library adds a 'sendgrid' mail driver to Laravel.",
"keywords": ["laravel", "sendgrid"],
"license": "MIT",
"require": {
"illuminate/mail": "^9.0",
"illuminate/support": "^9.0",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"illuminate/container": "^9.0||^10.0",
"illuminate/filesystem": "^9.0||^10.0",
"phpunit/phpunit": "^9.5.8",
"laravel/helpers": "^1.2",
"vlucas/phpdotenv": "^5.4.1"
},
"autoload": {
"psr-4": {
"Sichikawa\\LaravelSendgridDriver\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php"
]
},
"authors": [
{
"name": "shingo.ichikawa",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/s-ichikawa/laravel-sendgrid-driver/issues"
},
"suggest": {
"s-ichikawa/sendgrid-api-builder": "support to build json for sendgrid api"
},
"extra": {
"laravel": {
"providers": [
"Sichikawa\\LaravelSendgridDriver\\SendgridTransportServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}