dev-master
9999999-devAdds a Profiler tab to gather statistics about Doctrine queries made during a request
MIT
The Requires
by Dennis Benkert
doctrine profiler
Wallogit.com
2017 © Pedro Peláez
Adds a Profiler tab to gather statistics about Doctrine queries made during a request
This bundle adds a tab to your Profiler which gathers statistical information about the Doctrine queries that have been executed during a request., (*1)
Right now the bundle generates statistical information about:, (*2)
Add a requirement in your composer.json for the sensiolabs/doctrine-query-statistics-bundle package:, (*3)
"sensiolabs/doctrine-query-statistics-bundle": "*"
Add the SensioLabsDoctrineQueryStatisticsBundle to your application's kernel:, (*4)
public function registerBundles()
{
$bundles = array(
...
new SensioLabs\DoctrineQueryStatisticsBundle\SensioLabsDoctrineQueryStatisticsBundle(),
...
);
...
}
Released under the MIT License, see LICENSE., (*5)
Adds a Profiler tab to gather statistics about Doctrine queries made during a request
MIT
doctrine profiler