leek / git-debug-bundle
Adds useful Git information to the Symfony2 Debug Toolbar
Installs: 17 191
Dependents: 1
Suggesters: 0
Security: 0
Stars: 23
Watchers: 3
Forks: 6
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/web-profiler-bundle: >=2.0.0
This package is not auto-updated.
Last update: 2022-02-01 12:20:07 UTC
README
Adds useful Git information to the Symfony2 debug toolbar.
Current branch in toolbar (Symfony 2.1)
Branch list in menu
Tag list in menu
Installation (Symfony 2.0.x only)
1. Add the following to your deps
file:
[LeekGitDebugBundle] git=git://github.com/leek/GitDebugBundle.git target=bundles/Leek/GitDebugBundle version=origin/2.0
2. Run the vendors install script:
php bin/vendors install
3. Add the Leek
namespace to app/autoload.php
:
<?php // ... $loader->registerNamespaces(array( // ... 'Leek' => __DIR__.'/../vendor/bundles',
4. Setup the bundle to load only on your dev
or test
environment(s) in app/appKernel.php
:
<?php // ... if (in_array($this->getEnvironment(), array('dev', 'test'))) { // ... $bundles[] = new Leek\GitDebugBundle\LeekGitDebugBundle();
That's it! You should now see your current Git branch on the debug toolbar.
Note: A
composer.json
file is also provided if you prefer to use Composer. Therequire
key is: leek/git-debug-bundle