olegstepura/sensio-buzz-profiler-bundle

Bundle to connect sensio/buzz-bundle with juliendidier/buzz-profiler-bundle to support profiling default buzz client

dev-master 2012-03-17 14:40 UTC

This package is not auto-updated.

Last update: 2024-05-19 02:04:28 UTC


README

Bundle to connect sensio/buzz-bundle with juliendidier/buzz-profiler-bundle to support prifiling default buzz client

Installation

Add to composer.json at require section:

    "olegstepura/sensio-buzz-profiler-bundle": "dev-master",

Install it with composer, and enable the bundle in the kernel after SensioBuzzBundle before BuzzProfilerBundle:

<?php
// app/AppKernel.php

public function registerBundles()
{
	$bundles = array(
		// ...
		new Sensio\Bundle\BuzzBundle\SensioBuzzBundle(),
		new Ost\SensioBuzzProfilerBundle\OstSensioBuzzProfilerBundle(),
		new Buzz\Bundle\ProfilerBundle\BuzzProfilerBundle(),
	);
}