Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.
/ GitDebugBundle Public archive

Adds useful Git information to the Symfony2 Debug Toolbar

Notifications You must be signed in to change notification settings

leek/GitDebugBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LeekGitDebugBundle Maintenance

Adds useful Git information to the Symfony2 debug toolbar.

Current branch in toolbar (Symfony 2.1)

Example Toolbar

Branch list in menu

Example Menu #1

Tag list in menu

Example Menu #2

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. The require key is: leek/git-debug-bundle

About

Adds useful Git information to the Symfony2 Debug Toolbar

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •