Điểm qua fruitcake/laravel-debugbar: 19.3k sao trên GitHub, viết chủ yếu bằng PHP, thuộc nhóm Backend. Debugbar for Laravel (Integrates PHP Debug Bar)
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
This is a package to integrate PHP 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 Ajax/Livewire Requests, which are shown in a dropdown.
Read the documentation for more configuration options.
[!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 fruitcake/laravel-debugbar --dev
Note: The package name has changed to fruitcake/laravel-debugbar. If you're using barryvdh/laravel-debugbar,
you can safely replace this with the new package name: composer remove barryvdh/laravel-debugbar --dev --no-scripts
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
The Debugbar will be enabled when APP_DEBUG is true and when the environment is not production or testing.
You can disable it in the config (debugbar.enabled) or by setting DEBUGBAR_ENABLED in your .env. See more options in config/debugbar.php
You 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 to true for syntax highlighting)
Copy the package config to your local config with the publish command:
There are also helper functions available for the most common calls:
// All arguments will be dumped as a debug message
debug($var1, $someString, $intValue, $object);
// `$collection->debug()` will return the collection and dump it as a debug message. Like `$collection->dump()`
collect([$var1, $someString])->debug();
debugbar()->startMeasure('render','Time for rendering');
debugbar()->stopMeasure('render');
debugbar()->addMeasure('now', LARAVEL_START, microtime(true));
debugbar()->measure('My long operation', function() {
// Do something…
});
If you want you can add your own DataCollectors, through the Container or the Facade:
Debugbar::addCollector(new DebugBar\DataCollector\MessagesCollector('my_messages'));
// Or via the App container:
$debugbar = App::make('debugbar');
$debugbar->addCollector(new DebugBar\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 follow https://php-debugbar.com/docs/rendering
$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.
Note: by default Debugbar can only be enabled in debug mode and non-production environments. It's highly recommended to don't install this in production at all.
If you really need to enable it in production, you can set debugbar.force_allow_enable to true, or set DEBUGBAR_FORCE_ALLOW_ENABLE=true in your .env.
This will not enable the Debugbar, but will run the ServiceProvider bootstrap so you can enable it after booting.
Storage
Debugbar remembers previous requests, which you can view using the Browse button on the right. This will only work if you enable debugbar.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 with rcrowe/TwigBridge 0.6.x
Add the following extensions to your TwigBridge config/extensions.php (or register the extensions manually)
The Dump extension will replace the dump function to output variables using the DataFormatter. The Debug extension adds a debug() 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 a stopwatch tag similar to the one in Symfony/Silex Twigbridge.
{% stopwatch "foo" %}
…some things that gets timed
{% endstopwatch %}
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/fruitcake/laravel-debugbar là nguồn chính thức.
fruitcake/laravel-debugbar có những chủ đề gì?
GitHub topics của fruitcake/laravel-debugbar: "debugbar", "developer-tool", "laravel", "profiler", "toolbar". TopGit xếp repo vào nhóm Backend.
fruitcake/laravel-debugbar có phải mã nguồn mở không?
Có — fruitcake/laravel-debugbar phát hành theo license MIT, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/fruitcake/laravel-debugbar.
fruitcake/laravel-debugbar có trang demo không?
Dự án có trang chủ ở http://laraveldebugbar.com/. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
fruitcake/laravel-debugbar còn đang phát triển không?
Commit gần nhất trên fruitcake/laravel-debugbar là 25 ngày trước (theo timestamp GitHub). Repo có 1.6k fork — một chỉ báo về mức độ quan tâm của cộng đồng.
fruitcake/laravel-debugbar dùng license gì?
fruitcake/laravel-debugbar phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
Đọc đầy đủ README ở tab phía trên.
Muốn nghe thêm một ý kiến về laravel-debugbar?
Hỏi một AI đọc được trang này — một cú bấm là có ngay nhận định về laravel-debugbar.