symfony-bundle apc-profiler-bundle
Symfony ApcProfilerBundle
stealth35/apc-profiler-bundle
Symfony ApcProfilerBundle
- Friday, July 6, 2012
- by stealth35
- Repository
- 2 Watchers
- 19 Stars
- 1,201 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 5 Forks
- 1 Open issues
- 1 Versions
- 0 % Grown
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
<?php
// File: app/autoload.php
$loader->registerNamespaces(array(
'Stealth35' => DIR.'/../vendor/bundles',
// ...
));, (*1)
### Add ApcProfilerBundle to your application kernel
``` php
<?php
// File: app/AppKernel.php
public function registerBundles()
{
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
// ...
$bundles[] = new Stealth35\ApcProfilerBundle\ApcProfilerBundle();
// ...
}
}