stealth35/apc-profiler-bundle

Symfony ApcProfilerBundle

Installs: 1 244

Dependents: 0

Suggesters: 0

Security: 0

Stars: 19

Watchers: 3

Forks: 3

Open Issues: 1

Type:symfony-bundle

dev-master 2012-07-06 12:37 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:34:52 UTC


README

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