-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
61 lines (61 loc) · 1.25 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "melihovv/laravel-log-viewer",
"description": "A Laravel log viewer",
"license": "MIT",
"keywords": [
"log",
"log-reader",
"log-viewer",
"logging",
"laravel",
"lumen"
],
"type": "library",
"authors": [
{
"name": "Alexander Melihov",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-fileinfo": "*",
"illuminate/config": "^6.0|^7.0",
"illuminate/filesystem": "^6.0|^7.0",
"illuminate/http": "^6.0|^7.0",
"illuminate/routing": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/view": "^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0",
"orchestra/testbench-browser-kit": "^4.0|^5.0",
"phpunit/phpunit": "^8.4|^9.0"
},
"autoload": {
"psr-4": {
"Melihovv\\LaravelLogViewer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Melihovv\\LaravelLogViewer\\Tests\\": "tests"
}
},
"scripts": {
"phpunit": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Melihovv\\LaravelLogViewer\\ServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}