PHPackages                             visualweber/zfdebug - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. visualweber/zfdebug

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

visualweber/zfdebug
===================

ZFDebug is a plugin for the Zend Framework for PHP5, providing useful debug information displayed in a small bar at the bottom of every page.

060PHP

Since Aug 27Pushed 9y ago1 watchersCompare

[ Source](https://github.com/visualweber/zfdebug)[ Packagist](https://packagist.org/packages/visualweber/zfdebug)[ RSS](/packages/visualweber-zfdebug/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

ZFDebug - a debug bar for Zend Framework
========================================

[](#zfdebug---a-debug-bar-for-zend-framework)

ZFDebug is a plugin for the Zend Framework for PHP5, providing useful debug information displayed in a small bar at the bottom of every page.

Time spent, memory usage and number of database queries are presented at a glance. Additionally, included files, a listing of available view variables and the complete SQL command of all queries are shown in separate panels:

The available plugins at this point are:

- Cache: Information on Zend\_Cache, APC and Zend OPcache (for PHP 5.5).
- Database: Full listing of SQL queries from Zend\_Db and the time for each.
- Exception: Error handling of errors and exceptions.
- File: Number and size of files included with complete list.
- Html: Number of external stylesheets and javascripts. Link to validate with W3C. for custom memory measurements.
- Log: Timing information of current request, time spent in action controller and custom timers. Also average, min and max time for requests.
- Variables: View variables, request info and contents of `$_COOKIE`, `$_POST` and `$_SESSION`

Installation &amp; Usage
------------------------

[](#installation--usage)

To install, place the folder 'ZFDebug' in your library path, next to the Zend folder. Then add the following method to your bootstrap class (in ZF1.8+):

In Bootstrap.php

```
protected function _initZFDebug() {
    if (Zend_Registry::isRegistered('config') && $config = Zend_Registry::get('config')) {
        if ($config ['settings'] ['debug']['enabled'] == false):
            return true;
        else:
            $autoloader = Zend_Loader_Autoloader::getInstance();
            $autoloader->registerNamespace('ZFDebug');
        endif;
    }

    $options = array(
        'plugins' => array(
            'Variables',
            //'ZFDebug_Controller_Plugin_Debug_Plugin_Debug' => array('tab' => 'Debug', 'panel' => ''),
            'ZFDebug_Controller_Plugin_Debug_Plugin_Auth',
            'File' => array('basePath' => PATH_PROJECT),
            'Database',
            'Registry',
            'Memory',
            'Time',
            'Exception'
        ),
        'jquery_path' => '');
    // Setup the cache plugin
    if (Zend_Registry::isRegistered('cache')) {
        $cache = Zend_Registry::get('cache');
        $options ['plugins'] ['Cache'] ['backend'] = $cache->getBackend();
    }

    // Setup the databases
    $resource = $this->getPluginResource('multidb');
    if (Zend_Registry::isRegistered('config')) {
        $config = Zend_Registry::get('config');
        $databases = $config ['resources'] ['multidb'];
        foreach ($databases as $name => $adapter) {
            $db_adapter = $resource->getDb($name);
            $options ['plugins'] ['Database'] ['adapter'] [$name] = $db_adapter;
        }
    }

    // Init the ZF Debug Plugin
    $debug = new ZFDebug_Controller_Plugin_Debug($options);
    $this->bootstrap('frontController');
    $frontController = $this->getResource('frontController');
    $frontController->registerPlugin($debug);
}

```

In .ini

\[development : bootstrap\] settings.debug.enabled = 1 ; enable debug bar

Using Composer
--------------

[](#using-composer)

You may now install ZFDebug using the dependency management tool Composer.

To use ZFDebug with Composer, add the following to the require list in your project's composer.json file:

```
"require": {
    "visualweber/zfdebug": "0.1"
},

```

Run the install command to resolve and download the dependencies:

```
php composer.phar install

```

Further documentation will follow as the github move progresses.

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c6f3de3d3992647065c443eca835cac3f63e4a257e003367129e216638b98ef2?d=identicon)[vswb](/maintainers/vswb)

---

Top Contributors

[![vswb](https://avatars.githubusercontent.com/u/12278864?v=4)](https://github.com/vswb "vswb (9 commits)")[![bainguyen](https://avatars.githubusercontent.com/u/10115518?v=4)](https://github.com/bainguyen "bainguyen (1 commits)")

### Embed Badge

![Health badge](/badges/visualweber-zfdebug/health.svg)

```
[![Health](https://phpackages.com/badges/visualweber-zfdebug/health.svg)](https://phpackages.com/packages/visualweber-zfdebug)
```

###  Alternatives

[fjogeleit/prometheus-messenger-middleware

Prometheus Middleware for the Symfony Messenger Component

2255.2k](/packages/fjogeleit-prometheus-messenger-middleware)[spatie/craft-ray

Easily debug CraftCMS projects

1638.6k](/packages/spatie-craft-ray)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
