-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
47 lines (47 loc) · 1.2 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
{
"name": "lanin/laravel-api-debugger",
"description": "Easily debug your JSON API.",
"keywords": ["laravel", "framework", "api", "debug", "debugger", "json", "dump", "queries", "log"],
"license": "MIT",
"authors": [
{
"name": "Maxim Lanin",
"email": "[email protected]",
"homepage": "http://lanin.me"
}
],
"require": {
"php": ">=7.1",
"illuminate/support": ">=5.4.0"
},
"require-dev": {
"orchestra/testbench": ">=3.4.0",
"phpunit/phpunit": "^7",
"mockery/mockery": "^1.3.1"
},
"autoload": {
"psr-4": {
"Lanin\\Laravel\\ApiDebugger\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Lanin\\Laravel\\ApiDebugger\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Lanin\\Laravel\\ApiDebugger\\ServiceProvider"
],
"aliases": {
"Debugger": "Lanin\\Laravel\\ApiDebugger\\Support\\Facade"
}
}
}
}