All Projects → nelmio → Nelmioesidebugbundle

nelmio / Nelmioesidebugbundle

Licence: mit
Shows you caching information around ESI requests for debugging purposes.

NelmioEsiDebugBundle

About

The NelmioEsiDebugBundle shows you caching information around ESI requests for debugging purposes.

Features

  • Visual wrapping of ESI requests
  • A link in the Web Debug Toolbar to hide the wrapper divs

Screenshot

Configuration

If you want to disable the wrapper divs without disabling the bundle, you can do it via the configuration:

nelmio_esi_debug:
    enabled: false

Installation (Symfony 2.1+)

Require the nelmio/esi-debug-bundle package in your composer.json and update your dependencies.

$ composer require nelmio/esi-debug-bundle

Add the NelmioEsiDebugBundle to your application's kernel:

public function registerBundles()
{
    $bundles = array(
        ...
        new Nelmio\EsiDebugBundle\NelmioEsiDebugBundle(),
        ...
    );
    ...
}

License

Released under the MIT License, see LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].