maximebf/debugbar
最新稳定版本:v3.0-beta.10
Composer 安装命令:
composer require --dev maximebf/debugbar
包简介
Debug bar in the browser for php application
README 文档
README
Displays a debug bar in the browser with information from php.
No more var_dump() in your code!
Note: Debug Bar is for development use only. Never install this on websites that are publicly accessible.
V3 Beta
Currently v3 is in beta. You can install it with composer require php-debugbar/php-debugbar:^3.0@beta.
See the Release Notes for more information and breaking changes.
Features:
- Generic Debug Bar for PHP projects
- Easy to integrate with any project
- Clean, fast and easy to use interface
- Handles AJAX request
- Includes generic data collectors and collectors for well known libraries
- The client side bar is 100% coded in plain javascript
- Easily create your own collectors and their associated view in the bar
- Save and re-open previous requests
- Very well documented
Includes collectors for:
- Messages
- Config
- Time
- Memory
- Exceptions
- PHP Info
- Request Data
- Templates
- Object Count
- PDO
- Monolog
- Symfony Mailer
Checkout the demo for examples and phpdebugbar.com for a live example.
Additional collectors are available here:
Integrations with other frameworks:
- Laravel
- Atomik
- XOOPS
- Zend Framework 2
- Phalcon
- SilverStripe
- Grav CMS
- TYPO3
- Joomla
- Drupal
- October CMS
- Framework-agnostic middleware and PSR-7 with php-middleware/phpdebugbar
- Dotkernel Frontend Application
(drop me a message or submit a PR to add your DebugBar related project here)
Installation
The best way to install DebugBar is using Composer with the following command:
composer require --dev php-debugbar/php-debugbar
Quick start
DebugBar is very easy to use and you can add it to any of your projects in no time.
The easiest way is using the render() functions
<?php // Require the Composer autoloader, if not already loaded require 'vendor/autoload.php'; use DebugBar\StandardDebugBar; $debugbar = new StandardDebugBar(); $debugbarRenderer = $debugbar->getJavascriptRenderer(); $debugbar["messages"]->addMessage("hello world!"); ?> <html> <head> <?php echo $debugbarRenderer->renderHead() ?> </head> <body> ... <?php echo $debugbarRenderer->render() ?> </body> </html>
The DebugBar uses DataCollectors to collect data from your PHP code. Some of them are
automated but others are manual. Use the DebugBar like an array where keys are the
collector names. In our previous example, we add a message to the MessagesCollector:
$debugbar["messages"]->addMessage("hello world!");
StandardDebugBar activates the following collectors:
MemoryCollector(memory)MessagesCollector(messages)PhpInfoCollector(php)RequestDataCollector(request)TimeDataCollector(time)ExceptionsCollector(exceptions)
Learn more about DebugBar in the docs.
Demo
To run the demo, clone this repository and start the Built-In PHP webserver from the demo folder:
composer run demo
Then visit http://localhost:8000/
Testing
To test, run php vendor/bin/phpunit.
To debug Browser tests, you can run PANTHER_NO_HEADLESS=1 vendor/bin/phpunit --debug. Run vendor/bin/bdi detect drivers to download the latest drivers.
Contributing
When contributing to the JavaScript codebase:
- Run
npm run lintandnpm run buildbefore committing - Fix any errors (warnings are acceptable but should be minimized)
- Use
npm run lint:fixfor automatic fixes where possible - Follow the ES6+ patterns established in the codebase
When contributing to the PHP codebase:
- Run
composer check-styleandcomposer analysebefore committing. - Make sure the tests pass (see above)
- Verify that the demo works correctly (
php -S localhost:8000 demo/)
统计信息
- 总下载量: 108.3M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4332
- 点击次数: 3
- 依赖项目数: 175
- 推荐数: 8
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04