PHPackages                             atk14/dbmole-panel - 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. atk14/dbmole-panel

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

atk14/dbmole-panel
==================

A panel for Tracy Debugger with DbMole statistics

v1.0.3(3mo ago)043.1k↓24.3%MITPHPPHP &gt;=5.3.0

Since Apr 13Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/atk14/DbMolePanel)[ Packagist](https://packagist.org/packages/atk14/dbmole-panel)[ Docs](https://github.com/atk14/DbMolePanel)[ RSS](/packages/atk14-dbmole-panel/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

DbMolePanel
===========

[](#dbmolepanel)

A panel for Tracy Debugger with DbMole statistics. This is highly recommended tool for profiling an ATK14 application.

Basic usage
-----------

[](#basic-usage)

```
$bar = Tracy\Debugger::getBar();
$bar->addPanel(new DbMolePanel($dbmole));

```

Usage in an ATK14 application (built upon Atk14Skelet)
------------------------------------------------------

[](#usage-in-an-atk14-application-built-upon-atk14skelet)

Use the Composer to install the panel.

```
cd path/to/your/atk14/project/
composer require atk14/dbmole-panel

```

Load autoloader from the Composer and enable the Tracy Debugger.

```
// file: lib/load.php
require(__DIR__."/../vendor/autoload.php");

if(
  !TEST &&
  !$HTTP_REQUEST->xhr() &&
  php_sapi_name()!="cli" // we do not want Tracy in cli
){
  Tracy\Debugger::enable(PRODUCTION, __DIR__ . '/../log/');
}

```

Enable collecting of the DbMole statistics in DEVELOPMENT.

```
// file: config/settings.php
define("DBMOLE_COLLECT_STATISTICS",DEVELOPMENT);

```

Add the DbMole panel to the Tracy in \_application\_after\_filter().

```
// file: app/controllers/application_base.php
function _application_after_filter(){
  if(DBMOLE_COLLECT_STATISTICS){
    $bar = Tracy\Debugger::getBar();
    $bar->addPanel(new DbMolePanel($this->dbmole));
  }
}

```

Licence
-------

[](#licence)

DbMolePanel is free software distributed [under the terms of the MIT license](http://www.opensource.org/licenses/mit-license)

###  Health Score

48

—

FairBetter than 93% of packages

Maintenance82

Actively maintained with recent releases

Popularity28

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~968 days

Total

4

Last Release

97d ago

PHP version history (2 changes)v1.0PHP &gt;=5.0.0

v1.0.1PHP &gt;=5.3.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/974278?v=4)[Jaromir Tomek](/maintainers/yarri)[@yarri](https://github.com/yarri)

---

Top Contributors

[![yarri](https://avatars.githubusercontent.com/u/974278?v=4)](https://github.com/yarri "yarri (18 commits)")

---

Tags

tracyatk14dbmole

### Embed Badge

![Health badge](/badges/atk14-dbmole-panel/health.svg)

```
[![Health](https://phpackages.com/badges/atk14-dbmole-panel/health.svg)](https://phpackages.com/packages/atk14-dbmole-panel)
```

###  Alternatives

[recca0120/laravel-tracy

A Laravel Package to integrate Nette Tracy Debugger

388284.8k3](/packages/recca0120-laravel-tracy)[contributte/tracy

Nette Tracy extensions for easy-developing

141.5M5](/packages/contributte-tracy)[milo/vendor-versions

Bar with versions list of vendor libraries for Tracy

19159.2k5](/packages/milo-vendor-versions)[vasek-purchart/tracy-blue-screen-bundle

This bundle lets you use the Tracy's debug screen in combination with the the default profiler in your Symfony application.

1178.4k](/packages/vasek-purchart-tracy-blue-screen-bundle)[orisai/tracy-pets

Tracy got an angry pet to remind you of your failures

1026.3k4](/packages/orisai-tracy-pets)

PHPackages © 2026

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