/ApcProfilerBundle

Apc Profiler for Symfony2

Primary LanguagePHP

ApcProfilerBundle

Add the package to your dependencies

{
    "require": {
        "stealth35/apc-profiler-bundle": "dev-master"
        ...
    }
}

Update the vendors

php composer.phar update

Add ApcProfilerBundle to your application kernel

<?php
    // File: app/AppKernel.php
    public function registerBundles()
    {
        if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            // ...
            $bundles[] = new Stealth35\ApcProfilerBundle\ApcProfilerBundle();
            // ...
        }
    }