Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 714 Bytes

File metadata and controls

32 lines (25 loc) · 714 Bytes

WebProfilerBundle

Build Status

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);
            // ...
        }
    }
}