Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 774 Bytes

File metadata and controls

37 lines (29 loc) · 774 Bytes

ApcProfilerBundle

Installation:

[ApcProfilerBundle]
    git=http://github.com/stealth35/ApcProfilerBundle.git
    target=bundles/Stealth35/ApcProfilerBundle

Update the vendors

php bin/vendors install

Add the namespaces to your autoloader

<?php
// File: app/autoload.php
$loader->registerNamespaces(array(
    'Stealth35'         => __DIR__.'/../vendor/bundles',
    // ...
));

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();
            // ...
        }
    }