排球/passel-bundle

使用排球系统的passel组件的passel bundle。

dev-master / 0.1.x-dev 2015-02-15 17:10 UTC

This package is not auto-updated.

Last update: 2024-09-14 14:29:43 UTC


README

步骤 1:下载Bundle

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

$ composer require VolleyballScheduling/PasselBundle "~1"

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

步骤 2:启用Bundle

然后,在项目的app/AppKernel.php文件中添加以下行以启用此bundle

<?php
// app/AppKernel.php

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

            new \Volleyball\Bundle\PasselBundle\VolleyballPasselBundle(),
        );

        // ...
    }

    // ...
}