Download the PHP package orchestra/debug without Composer
On this page you can find all versions of the php package orchestra/debug. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download orchestra/debug
More information about orchestra/debug
Files in orchestra/debug
Package debug
Short Description Artisan Debug Profiler for Laravel
License MIT
Homepage http://orchestraplatform.com/docs/latest/components/debug/
Informations about the package debug
Artisan Debug Profiler for Laravel
Debug Component is commandline profiling package for Laravel, It was based from Laravel 4.1 commandline profiling tool which was merged with php artisan tail
.
Table of Content
- Version Compatibility
- Installation
- Configuration
- Usage
- Resources
- Changelog
Version Compatibility
Laravel | Debug |
---|---|
4.x.x | 2.x.x |
5.0.x | 3.0.x |
5.1.x | 3.1.x |
5.2.x | 3.2.x |
5.3.x | 3.3.x |
5.4.x | 3.4.x |
5.5.x | 3.5.x |
5.6.x | 3.6.x@dev |
Installation
To install through composer, simply put the following in your composer.json
file:
And then run composer install
from the terminal.
Quick Installation
Above installation can also be simplify by using the following command:
composer require "orchestra/debug=~3.0"
Configuration
Add following service providers in config/app.php
.
Aliases
You could also create an alias for Orchestra\Support\Facades\Profiler
in config/app.php
.
Usage
Enabling Profiler
To enable the profiler, all you need to do is:
This normally would goes in your development environment such as
local
environment, in the caseapp/Providers/AppServiceProvider.php
would be an ideal location to include the command.
Viewing the Profiler
To view the profiler, run the following command in your terminal:
php artisan debug
All versions of debug with dependencies
illuminate/console Version ~5.4.0
orchestra/support Version ~3.4.0
react/socket Version 0.5.*