forked from dcblogdev/laravel-sent-emails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 947 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
35
36
37
{
"name": "dcblogdev/laravel-sent-emails",
"description": "Store outgoing emails in Laravel",
"keywords": [
"dcblogdev",
"laravel",
"sent-emails"
],
"homepage": "https://github.com/dcblogdev/laravel-sent-emails",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "David Carr",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x|6.x|7.x|8.x"
},
"autoload": {
"psr-4": {
"Dcblogdev\\LaravelSentEmails\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Dcblogdev\\LaravelSentEmails\\SentEmailsServiceProvider"
],
"aliases": {
"SentEmails": "Dcblogdev\\LaravelSentEmails\\Facades\\SentEmailsFacade"
}
}
}
}