stealth35 / apc-profiler-bundle
Symfony ApcProfilerBundle
Package info
github.com/stealth35/ApcProfilerBundle
Type:symfony-bundle
pkg:composer/stealth35/apc-profiler-bundle
dev-master
2012-07-06 12:37 UTC
Requires
- php: >=5.3.2
- ext-apc: >= 2.0.0
- symfony/framework-bundle: >=2.0,<2.2
This package is not auto-updated.
Last update: 2026-03-14 19:24:46 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(); // ... } }