madewithlove / laravel-debug-console
Works as a console viewer for laravel debugbar.
Installs: 304
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 10
Forks: 1
Open Issues: 4
Requires
- php: >=5.5.9
- barryvdh/laravel-debugbar: ^2.3|^3.0
- clue/stdio-react: ~2.1
- illuminate/console: 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-29 05:10:48 UTC
README
Use as an alternative to view collected information from Laravel Debugbar package. Useful if you are building apis or running console commands.
Installation
You can install the latest version via composer:
composer require --dev madewithlove/laravel-debug-console
Add the service provider to config/app.php
if you are on laravel 5.4 or bellow:
'providers' => [ // ... Madewithlove\LaravelDebugConsole\ServiceProvider::class ]
Usage
Open your console and run php artisan app:debug [messages|timeline|exceptions|route|queries|request]
same options that are available by default on Laravel Debugbar.