-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
53 lines (53 loc) · 1.22 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
{
"name": "bugphix/bugphix-laravel",
"description": "Capture and monitor detailed error logs with nice dashboard and UI.",
"keywords": [
"bugphix",
"bugphix-laravel",
"laravel-bugphix",
"laravel-error",
"error",
"error-catcher",
"error-handler",
"error-manager",
"error-monitoring",
"error-watcher",
"error-viewer",
"error-logger"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeric Izon",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Bugphix\\BugphixLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bugphix\\BugphixLaravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bugphix\\BugphixLaravel\\BugphixServiceProvider"
]
}
},
"require": {
"php": ">=7.0.0",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"laravel/laravel": "~6.0",
"orchestra/testbench": "^4.0"
}
}