maximebf/debugbar

This package is abandoned and no longer maintained. The author suggests using the php-debugbar/php-debugbar package instead.

Debug bar in the browser for php application

Installs: 108 255 367

Dependents: 175

Suggesters: 8

Security: 2

Stars: 4 281

Watchers: 73

Forks: 414

Open Issues: 130

pkg:composer/maximebf/debugbar

v3.0-beta.2 2025-12-27 09:57 UTC

This package is auto-updated.

Last update: 2025-12-28 19:01:05 UTC


README

Latest Stable Version Total Downloads License Tests

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 Upgrade guide for more information and breaking changes.

Screenshot

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:

Checkout the demo for examples and phpdebugbar.com for a live example.

Additional collectors are available here:

Integrations with other frameworks:

(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 root:

php -S localhost:8000

Then visit http://localhost:8000/demo/

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:

  1. Run npm run lint and npm run build before committing
  2. Fix any errors (warnings are acceptable but should be minimized)
  3. Use npm run lint:fix for automatic fixes where possible
  4. Follow the ES6+ patterns established in the codebase

When contributing to the PHP codebase:

  1. Run composer check-style and composer analyse before committing.
  2. Make sure the tests pass (see above)
  3. Verify that the demo works correctly (php -S localhost:8000 demo/)