tmsolution/prototype-bundle

Symfony2 为 prototype 定制的 bundle

安装: 489

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 4

类型:symfony-bundle

v1.3 2016-03-23 13:05 UTC

README

作者:Damian Piela damian.piela@tmsolution.pl

Build Status

Scrutinizer Code Quality Build Status

安装

要安装该 bundle,请在您的项目 composer.json 文件中添加

//composer require

"tmsolution/prototype-bundle": "1.1.*"

然后,在应用内核中启用您的 bundle

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Core\PrototypeBundle\CorePrototypeBundle()
    );
}