-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.02 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
{
"name": "alibayat/laravel-logviewer",
"description": "Showing Laravel log files in a web page using dataTables",
"license": "MIT",
"keywords": ["Laravel", "Logs", "Log Viewer", "Laravel Log Viewer"],
"authors": [
{
"name": "Ali Bayat",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"orchestra/testbench": "3.7.*"
},
"autoload": {
"classmap": [
"src/controllers"
],
"psr-0": {
"AliBayat\\LaravelLogViewer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AliBayat\\LaravelLogViewer\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AliBayat\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
]
}
},
"minimum-stability": "stable"
}