tony/tercer-bundle

本包的最新版本(dev-master)没有提供许可证信息。

为Symfony2的一个简单额外包

安装: 11

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:symfony-bundle

dev-master 2016-08-31 21:50 UTC

This package is not auto-updated.

Last update: 2024-09-23 13:48:03 UTC


README

步骤 1:下载包

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

$ composer require "tony/tercer-bundle":"dev-master"

此命令需要您全局安装了Composer,具体请参考Composer文档的安装章节

步骤 2:启用包

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

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Tony\TercerBundle\TonyTercerBundle(),
        );

        // ...
    }

    // ...
}