[ApcProfilerBundle]
git=http://github.com/stealth35/ApcProfilerBundle.git
target=bundles/Stealth35/ApcProfilerBundle
php bin/vendors install
<?php
// File: app/autoload.php
$loader->registerNamespaces(array(
'Stealth35' => __DIR__.'/../vendor/bundles',
// ...
));
<?php
// File: app/AppKernel.php
public function registerBundles()
{
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
// ...
$bundles[] = new Stealth35\ApcProfilerBundle\ApcProfilerBundle();
// ...
}
}