kitlabs/kit-debug-bundle

Symfony 调试命令包

安装: 12

依赖者: 0

建议者: 0

安全: 0

星标: 2

关注者: 3

分支: 0

开放问题: 0

类型:symfony-bundle

v0.1.1 2017-09-07 02:46 UTC

This package is not auto-updated.

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


README

Symfony 调试命令包

安装

步骤 1:下载包

打开命令行控制台,进入您的项目目录,并执行以下命令以下载此包的最新稳定版本

$ composer require kitlabs/kit-debug-bundle

此命令需要您已全局安装Composer,详情请参考Composer文档的安装章节

步骤 2:启用包

然后,将包添加到项目app/AppKernel.php文件中已注册的包列表中来启用该包

<?php
// app/AppKernel.php
 
// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
 
            new Kit\DebugBundle\KitDebugBundle(),
        );
 
        // ...
    }
 
    // ...
}

用法

kit:debug:command --name=doctrine:generate:crud