Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/repli2dev/tracy-gitversion-panel
Debugger panel for Tracy
https://github.com/repli2dev/tracy-gitversion-panel
nette php tracy
Last synced: 23 days ago
JSON representation
Debugger panel for Tracy
- Host: GitHub
- URL: https://github.com/repli2dev/tracy-gitversion-panel
- Owner: repli2dev
- License: bsd-3-clause
- Created: 2014-09-02T12:04:24.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-24T07:19:43.000Z (over 7 years ago)
- Last Synced: 2024-09-30T17:04:23.764Z (about 1 month ago)
- Topics: nette, php, tracy
- Language: HTML
- Size: 7.81 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Git Version Panel
Panel for Tracy debug panel.
Shows current branch and current revision hash to be able identify your deployed version on sight.Inspired by https://gist.github.com/vvondra/3645108.
![](http://oi59.tinypic.com/34oviv9.jpg)
## Installing
Install library via composer:
```
composer require jandrabek/tracy-gitversion-panel
```## Registerring...
### In older versions of Nette (< 2.2)
```
nette:
debugger:
bar:
- JanDrabek\Tracy\GitVersionPanel
```### In newer versions of Nette (>= 2.2)
```
tracy:
bar:
- JanDrabek\Tracy\GitVersionPanel
```### In pure Tracy
```
Tracy\Debugger::getBar()->addPanel(new JanDrabek\Tracy\GitVersionPanel());
```