forked from dmcbrn/laravel-email-database-log
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 917 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
{
"name": "dmcbrn/laravel-email-database-log",
"description": "A simple database logger for all outgoing emails sent by Laravel website - built from shvetsgroup/laravel-email-database-log.",
"keywords": ["laravel", "markdown"],
"license": "MIT",
"authors": [
{
"name": "dmcbrn",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/mail": "^8.0|^9.0|^10.0",
"illuminate/queue": "^8.0|^9.0|^10.0",
"doctrine/dbal": "*"
},
"autoload": {
"psr-4": {
"Dmcbrn\\LaravelEmailDatabaseLog\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dmcbrn\\LaravelEmailDatabaseLog\\LaravelEmailDatabaseLogServiceProvider"
]
}
}
}