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
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: 2024-11-23 13:22:16 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(); // ... } }