tmsolution / prototype-bundle
Symfony2 为 prototype 定制的 bundle
v1.3
2016-03-23 13:05 UTC
Requires
- php: >=5.3.2
- besimple/i18n-routing-bundle: ~2.3
- boekkooi/jquery-validation-bundle: 1.1.0
- friendsofsymfony/jsrouting-bundle: 1.*
- symfony/framework-bundle: 2.*
- tmsolution/classmapper-bundle: 1.*
- tmsolution/datagrid-bundle2: 2.*
- tmsolution/model-bundle: 1.*
Requires (Dev)
README
作者:Damian Piela damian.piela@tmsolution.pl
安装
要安装该 bundle,请在您的项目 composer.json
文件中添加
//composer require
"tmsolution/prototype-bundle": "1.1.*"
然后,在应用内核中启用您的 bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Core\PrototypeBundle\CorePrototypeBundle()
);
}