aureja / web-profiler-bundle
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5
- doctrine/doctrine-bundle: >=1.3
- doctrine/orm: ~2.5
- symfony/doctrine-bridge: >=2.7|~3.0
- symfony/framework-bundle: >=2.7|~3.0
Requires (Dev)
- aureja/test-framework-bundle: ~0.1
- phpunit/phpunit: ~5.6
- symfony/symfony: >=2.7|~3.0
This package is auto-updated.
Last update: 2024-10-15 04:23:03 UTC
README
Profiler orm and duplicate queries.
Installation
Step 1. Install via Composer
composer require aureja/web-profiler-bundle "dev-master"
Step 2. Add to AppKernel.php
class AppKernel extends Kernel { /** * {@inheritdoc} */ public function registerBundles() { if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { // ... $bundles[] = Aureja\Bundle\WebProfilerBundle\AurejaWebProfilerBundle($this); // ... } } }