Skip to content

Bundle to get information about doctrine hydration performance

License

Notifications You must be signed in to change notification settings

janwebdev/DoctrineProfileExtraBundle

 
 

Repository files navigation

DoctrineProfileExtraBundle

Bundle to get information about doctrine hydration performance

Purpose

Adds a section to web profile which lists all doctrine hydrations performed during generation of response.

Installation

Add this in your composer.json

"require-dev": {
    [...]
    "debesha/doctrine-hydration-profiler-bundle" : "~1.0@dev",
},

Then run php composer.phar update

Next step is to register the bundle in AppKernel (app/AppKernel.php)

if (in_array($this->getEnvironment(), array('dev', 'test'))) {
    [...]
    $bundles[] = new Debesha\DoctrineProfileExtraBundle\DebeshaDoctrineProfileExtraBundle();
}

Attention! The bundle MUST be included AFTER DoctrineBundle.

That's it.

Screenshots

Your profile gets a new section where you may get an information about how fast was hydrations made and how many entities was hydrated.

Screenshot

Screenshot

About

Bundle to get information about doctrine hydration performance

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 70.8%
  • Twig 29.2%