Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Laravel Debugbar (Integrates PHP Debug Bar)

License

NotificationsYou must be signed in to change notification settings

cloudnepal/laravel-debugbar

 
 

Repository files navigation

Unit TestsPackagist LicenseLatest Stable VersionTotal DownloadsFruitcake

This is a package to integratePHP Debug Bar with Laravel.It includes a ServiceProvider to register the debugbar and attach it to the output. You can publish assets and configure it through Laravel.It bootstraps some Collectors to work with Laravel and implements a couple custom DataCollectors, specific for Laravel.It is configured to display Redirects and (jQuery) Ajax Requests. (Shown in a dropdown)Readthe documentation for more configuration options.

Debugbar Dark Mode screenshot

Caution

Use the DebugBar only in development. Do not use Debugbar on publicly accessible websites, as it will leak information from stored requests (by design).

Warning

It can also slow the application down (because it has to gather and render data). So when experiencing slowness, try disabling some of the collectors.

This package includes some custom collectors:

  • QueryCollector: Show all queries, including binding + timing
  • RouteCollector: Show information about the current Route.
  • ViewCollector: Show the currently loaded views. (Optionally: display the shared data)
  • EventsCollector: Show all events
  • LaravelCollector: Show the Laravel version and Environment. (disabled by default)
  • SymfonyRequestCollector: replaces the RequestCollector with more information about the request/response
  • LogsCollector: Show the latest log entries from the storage logs. (disabled by default)
  • FilesCollector: Show the files that are included/required by PHP. (disabled by default)
  • ConfigCollector: Display the values from the config files. (disabled by default)
  • CacheCollector: Display all cache events. (disabled by default)

Bootstraps the following collectors for Laravel:

  • LogCollector: Show all Log messages
  • SymfonyMailCollector for Mail

And the default collectors:

  • PhpInfoCollector
  • MessagesCollector
  • TimeDataCollector (With Booting and Application timing)
  • MemoryCollector
  • ExceptionsCollector

It also provides a facade interface (Debugbar) for easy logging Messages, Exceptions and Time

Installation

Require this package with composer. It is recommended to only require the package for development.

composer require barryvdh/laravel-debugbar --dev

Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

The Debugbar will be enabled whenAPP_DEBUG istrue.

If you use a catch-all/fallback route, make sure you load the Debugbar ServiceProvider before your own App ServiceProviders.

Laravel without auto-discovery:

If you don't use auto-discovery, add the ServiceProvider to the providers list. For Laravel 11 or newer, add the ServiceProvider in bootstrap/providers.php. For Laravel 10 or older, add the ServiceProvider in config/app.php.

Barryvdh\Debugbar\ServiceProvider::class,

If you want to use the facade to log messages, add this within theregister method ofapp/Providers/AppServiceProvider.php class:

publicfunctionregister():void{$loader = \Illuminate\Foundation\AliasLoader::getInstance();$loader->alias('Debugbar', \Barryvdh\Debugbar\Facades\Debugbar::class);}

The profiler is enabled by default, if you have APP_DEBUG=true. You can override that in the config (debugbar.enabled) or by settingDEBUGBAR_ENABLED in your.env. See more options inconfig/debugbar.phpYou can also set in your config if you want to include/exclude the vendor files also (FontAwesome, Highlight.js and jQuery). If you already use them in your site, set it to false.You can also only display the js or css vendors, by setting it to 'js' or 'css'. (Highlight.js requires both css + js, so set totrue for syntax highlighting)

Copy the package config to your local config with the publish command:

php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"

Laravel with Octane:

Make sure to add LaravelDebugbar to your flush list inconfig/octane.php.

'flush' => [        \Barryvdh\Debugbar\LaravelDebugbar::class,    ],

Lumen:

For Lumen, register a different Provider inbootstrap/app.php:

if (env('APP_DEBUG')) {$app->register(Barryvdh\Debugbar\LumenServiceProvider::class);}

To change the configuration, copy the file to your config folder and enable it:

$app->configure('debugbar');

Usage

You can now add messages using the Facade (when added), using the PSR-3 levels (debug, info, notice, warning, error, critical, alert, emergency):

Debugbar::info($object);Debugbar::error('Error!');Debugbar::warning('Watch out…');Debugbar::addMessage('Another message','mylabel');

And start/stop timing:

Debugbar::startMeasure('render','Time for rendering');Debugbar::stopMeasure('render');Debugbar::addMeasure('now',LARAVEL_START,microtime(true));Debugbar::measure('My long operation',function() {// Do something…});

Or log exceptions:

try {thrownewException('foobar');}catch (Exception$e) {    Debugbar::addThrowable($e);}

There are also helper functions available for the most common calls:

// All arguments will be dumped as a debug messagedebug($var1,$someString,$intValue,$object);// `$collection->debug()` will return the collection and dump it as a debug message. Like `$collection->dump()`collect([$var1,$someString])->debug();start_measure('render','Time for rendering');stop_measure('render');add_measure('now',LARAVEL_START,microtime(true));measure('My long operation',function() {// Do something…});

If you want you can add your own DataCollectors, through the Container or the Facade:

Debugbar::addCollector(newDebugBar\DataCollector\MessagesCollector('my_messages'));//Or via the App container:$debugbar = App::make('debugbar');$debugbar->addCollector(newDebugBar\DataCollector\MessagesCollector('my_messages'));

By default, the Debugbar is injected just before</body>. If you want to inject the Debugbar yourself,set the config option 'inject' to false and use the renderer yourself and followhttp://phpdebugbar.com/docs/rendering.html

$renderer = Debugbar::getJavascriptRenderer();

Note: Not using the auto-inject, will disable the Request information, because that is added After the response.You can add the default_request datacollector in the config as alternative.

Enabling/Disabling on run time

You can enable or disable the debugbar during run time.

\Debugbar::enable();\Debugbar::disable();

NB. Once enabled, the collectors are added (and could produce extra overhead), so if you want to use the debugbar in production, disable in the config and only enable when needed.

Storage

Debugbar remembers previous requests, which you can view using the Browse button on the right. This will only work if you enabledebugbar.storage.open in the config.Make sure you only do this on local development, because otherwise other people will be able to view previous requests.In general, Debugbar should only be used locally or at least restricted by IP.It's possible to pass a callback, which will receive the Request object, so you can determine access to the OpenHandler storage.

Twig Integration

Laravel Debugbar comes with two Twig Extensions. These are tested withrcrowe/TwigBridge 0.6.x

Add the following extensions to your TwigBridge config/extensions.php (or register the extensions manually)

'Barryvdh\Debugbar\Twig\Extension\Debug','Barryvdh\Debugbar\Twig\Extension\Dump','Barryvdh\Debugbar\Twig\Extension\Stopwatch',

The Dump extension will replace thedump function to output variables using the DataFormatter. The Debug extension adds adebug() function which passes variables to the Message Collector,instead of showing it directly in the template. It dumps the arguments, or when empty; all context variables.

{{ debug() }}{{ debug(user,categories) }}

The Stopwatch extension adds astopwatch tag similar to the one in Symfony/Silex Twigbridge.

{%stopwatch"foo" %}    …some things that gets timed{%endstopwatch %}

About

Laravel Debugbar (Integrates PHP Debug Bar)

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP77.1%
  • CSS16.4%
  • JavaScript6.1%
  • Blade0.4%

[8]ページ先頭

©2009-2025 Movatter.jp