kejwmen/whoops-bundle

Whoops 的 Symfony3 集成

dev-master 2016-02-17 09:03 UTC

This package is auto-updated.

Last update: 2024-09-17 09:01:58 UTC


README

Whoops 的 Symfony 集成

安装

  1. 使用 Composer 将此包安装到您的项目中

        composer require kejwmen/whoops-bundle
  2. 将其添加到您的 AppKernel 中

        // app/AppKernel.php
        public function registerBundles()
        {
            if (in_array($this->getEnvironment(), array('dev'))) {
                $bundles[] = new Kejwmen\WhoopsBundle\KejwmenWhoopsBundle();
            }
        }