PHPackages                             nofutur3/tracy-gitpanel - 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. nofutur3/tracy-gitpanel

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

nofutur3/tracy-gitpanel
=======================

nette extension - adds the GIT panel to the tracy panel - shows current GIT branch.

v0.9.7(2y ago)3394.4k↑57.7%1[1 PRs](https://github.com/nofutur3/tracy-gitpanel/pulls)1MITPHPPHP &gt;=5.6

Since Feb 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/nofutur3/tracy-gitpanel)[ Packagist](https://packagist.org/packages/nofutur3/tracy-gitpanel)[ RSS](/packages/nofutur3-tracy-gitpanel/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (8)Dependencies (4)Versions (14)Used By (1)

tracy-gitpanel
==============

[](#tracy-gitpanel)

[![Build Status](https://camo.githubusercontent.com/0062d948e5975b19d32766dc1d52691e09fb1c5e9954c611dfd448d1a0554e32/68747470733a2f2f7472617669732d63692e6f72672f6e6f6675747572332f74726163792d67697470616e656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/nofutur3/tracy-gitpanel)[![Downloads this Month](https://camo.githubusercontent.com/1bcac4f5fee1cc6d5a7b5fa1249909b3763bbe321b29aff3035c65c0a6251dc2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f6e6f6675747572332f74726163792d67697470616e656c2e737667)](https://packagist.org/packages/nofutur3/tracy-gitpanel)[![Latest stable](https://camo.githubusercontent.com/33747f1e9d3394d30f9a4a5242ace05cf2df3d5f35816e165b406b4d3196f4f2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f6675747572332f74726163792d67697470616e656c2e737667)](https://packagist.org/packages/nofutur3/tracy-gitpanel)

---

This is simple extension for [Tracy](https://tracy.nette.org/en/) which shows the information about current GIT branch.

[![not versioned project](docs/not-versioned.png)](docs/not-versioned.png)

[![versioned project](docs/screen.png)](docs/screen.png)

Installation
------------

[](#installation)

The recommended installation is using [composer](https://getcomposer.org/).

```
composer req nofutur3/tracy-gitpanel
```

Alternative way - in case you are not able to use composer. Download the source code (ie clone git repo) into your project and require it some way. For [nette framework](https://nette.org/en/) like this in your bootstrap file:

```
$configurator
    ->createRobotLoader()
    ->addDirectory(__DIR__ . 'path/to/library/');
```

Configuration
-------------

[](#configuration)

In your nette application it's simple, just add these lines to your config file. Depends on the structure of your config files, but you may use the basic config.neon file. I usually add the lines just in config.local.neon file because I don't need this extension in production mode.

##### Nette 2.3+

[](#nette-23)

```
tracy:
    bar:
        - Nofutur3\GitPanel\Diagnostics\Panel
```

If you want to set up the protected branches (by default it uses just a master branch), just pass the array of branch names to the panel:

```
parameters:
    protected-branches:
        - production
        - staging
tracy:
    bar:
        - Nofutur3\GitPanel\Diagnostics\Panel(%protected-branches%)
```

##### Older version of Nette:

[](#older-version-of-nette)

```
nette:
    debugger:
        bar:
            - Nofutur3\GitPanel\Diagnostics\Panel
```

#### Standalone Tracy

[](#standalone-tracy)

In case you are using Tracy without Nette, you can add GitPanel this way:

```
\Tracy\Debugger::getBar()->addPanel(new \Nofutur3\GitPanel\Diagnostics\Panel());
```

Or with protected branches:

```
\Tracy\Debugger::getBar()
    ->addPanel(new \Nofutur3\GitPanel\Diagnostics\Panel(['production','staging']));
```

Support
-------

[](#support)

💲 Do you like this tool? Support me with few bucks to cover coffee expenses ;)

   Hey! You can send me money on Revolut by following this link:    bitcoin
 [![](docs/btc.png)](docs/btc.png) bc1q5ednnq59x70sv0zlk9w5p4fm92srlwljhr7yk6   lightning network
 [![](docs/ln.png)](docs/ln.png) lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhhwunev4jxjar0wgunw3gu8z2   litecoin
 [![](docs/ltc.png)](docs/ltc.png) ltc1q3e8g32u8ltgw5ycymw42feuvurgx89yayuxw9u

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity35

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.1% 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 ~408 days

Recently: every ~538 days

Total

9

Last Release

880d ago

Major Versions

v0.9.5 → v1.0.0.x-dev2020-07-24

PHP version history (2 changes)v0.9PHP &gt;=5.3.2

v0.9.4PHP &gt;=5.6

### Community

Maintainers

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

---

Top Contributors

[![nofutur3](https://avatars.githubusercontent.com/u/1681221?v=4)](https://github.com/nofutur3 "nofutur3 (33 commits)")[![spaze](https://avatars.githubusercontent.com/u/1966648?v=4)](https://github.com/spaze "spaze (1 commits)")

---

Tags

debugnettegittracypanelbranch

###  Code Quality

TestsCodeception

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/nofutur3-tracy-gitpanel/health.svg)

```
[![Health](https://phpackages.com/badges/nofutur3-tracy-gitpanel/health.svg)](https://phpackages.com/packages/nofutur3-tracy-gitpanel)
```

###  Alternatives

[tracy/tracy

😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.

1.9k25.5M1.5k](/packages/tracy-tracy)[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)[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)[kendrick/symfony-debug-toolbar-git

Git information into Symfony Debug Toolbar

3361.0k1](/packages/kendrick-symfony-debug-toolbar-git)[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)
