laravel-api-debugger
laravel-api-debugger copied to clipboard
Easy debug for your JSON API.
I'm trying to implement your package but i have no result, i tried the facade way but no success
This adds the ability to disable debugger on a per response basis, so it can be enabled for all actions, but if there's one specific action you'd like to disable...
Is there any option to disable debugging dynamically, for example to enable for certain requests and disable for others? Something like: ``` Debugger::disable(); Debugger::enable(); ``` Thank you
I have in my .env-File: ``` APP_DEBUG=false API_DEBUGGER_ENABLED=false ``` But debug is not disabled.
First of all, great package, thanks ! I noticed a problem though. if an error is caught like so: catch ( QueryException $e) { $mssg = "An account with these...
First, thanks for the work on this package. Trying to return a simple response with "Unauthorized" ```php return response()->json("Unauthorized", 401) ``` The variable $data on src/Debugger.php line 117 will then...
Call to undefined function Lanin\Laravel\ApiDebugger\config_path()
Hi, im on Laravel Framework 6.17.1 run into this : `Symfony\Component\Debug\Exception\FatalThrowableError : Argument 1 passed to Lanin\Laravel\ApiDebugger\ServiceProvider::registerCollections() must be of the type array, null given, called in E:\laragon-x86\www\w4c\vendor\lanin\laravel-api-debugger\src\ServiceProvider.php on line...
Tries to convert binary UUID from models to JSON and fails Malformed UTF-8 characters, possibly incorrectly encoded using https://github.com/ramsey/uuid
My implementation of responses sometimes has integers as the response content. This will of course produce an error trying to access an index of an integer like an array. I...