aureja/web-profiler-bundle

安装: 10

依赖: 0

建议者: 0

安全: 0

星级: 1

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

dev-master / 0.1.x-dev 2016-11-01 20:16 UTC

This package is auto-updated.

Last update: 2024-09-15 04:05:27 UTC


README

Build Status

Profiler ORM 和重复查询。

安装

步骤 1. 使用 Composer 安装

composer require aureja/web-profiler-bundle "dev-master"

步骤 2. 在 AppKernel.php 中添加

class AppKernel extends Kernel
{
    /**
     * {@inheritdoc}
     */
    public function registerBundles()
    {
        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
            // ...
            $bundles[] = Aureja\Bundle\WebProfilerBundle\AurejaWebProfilerBundle($this);
            // ...
        }
    }
}