-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
48 lines (48 loc) · 1.24 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
{
"name": "masterro/laravel-mail-viewer",
"description": "Easily view in browser outgoing emails.",
"license": "MIT",
"authors": [
{
"name": "Roman Ihoshyn",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"mail",
"mailable",
"log"
],
"require": {
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/events": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0",
"illuminate/mail": "^9.0|^10.0|^11.0",
"doctrine/dbal": "^3.5 | ^4.0 | ^5.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"MasterRO\\MailViewer\\": "src/app",
"MasterRO\\MailViewer\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"MasterRO\\MailViewer\\Providers\\MailViewerServiceProvider"
]
}
}
}