tutto / datagrid-bundle
此捆绑包提供构建数据网格的功能
dev-master / 1.0.x-dev
2014-11-25 16:36 UTC
Requires
- tutto/util-bundle: 1.0.*@dev
- tutto/xhtml-bundle: 1.0.*@dev
This package is not auto-updated.
Last update: 2024-09-24 02:47:22 UTC
README
安装
TuttoDataGridBundle可以通过Composer方便地安装。只需将以下内容添加到您的composer.json文件中
// composer.json
{
// ...
require: {
// ...
"tutto/xhtml-bundle": "1.0.*@dev"
}
}
在AppKernel.php文件中添加以下内容
<?php
// in AppKernel::registerBundles()
$bundles = array(
// ...
new Tutto\Bundle\DataGridBundle\TuttoDataGridBundle(),
new Tutto\Bundle\XhtmlBundle\TuttoXhtmlBundle(),
new \Tutto\Bundle\UtilBundle\TuttoUtilBundle()
// ...
);