All Projects → sensiolabs → Sensiolabsdoctrinequerystatisticsbundle

sensiolabs / Sensiolabsdoctrinequerystatisticsbundle

Licence: mit
[DEPRECATED] Adds a Profiler tab to gather statistics about Doctrine queries made during a request

SensioLabsDoctrineQueryStatisticsBundle

About

This bundle adds a tab to your Profiler which gathers statistical information about the Doctrine queries that have been executed during a request.

Right now the bundle generates statistical information about:

  • Duplicate queries
  • Similar queries (same queries with different parameters)

Installation

Add a requirement in your composer.json for the sensiolabs/doctrine-query-statistics-bundle package:

        "sensiolabs/doctrine-query-statistics-bundle": "*"

Add the SensioLabsDoctrineQueryStatisticsBundle to your application's kernel:

public function registerBundles()
{
    $bundles = array(
        ...
        new SensioLabs\DoctrineQueryStatisticsBundle\SensioLabsDoctrineQueryStatisticsBundle(),
        ...
    );
    ...
}

License

Released under the MIT License, see LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].