forked from laravel-admin-extensions/reporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (35 loc) · 874 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
32
33
34
35
36
{
"name": "laravel-admin-ext/reporter",
"description": "Exception reporter for laravel",
"type": "library",
"keywords": ["laravel-admin", "exception", "reporter"],
"homepage": "https://github.com/laravel-admin-extensions/reporter",
"license": "MIT",
"authors": [
{
"name": "z-song",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"laravel/framework": "~5.5",
"encore/laravel-admin": "~1.5"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"laravel/laravel": "~5.5"
},
"autoload": {
"psr-4": {
"Encore\\Admin\\Reporter\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Encore\\Admin\\Reporter\\ReporterServiceProvider"
]
}
}
}