tutto / datagrid-bundle
This bundle provide build data grids
Package info
github.com/januskrzysztof/datagrid
Type:symfony-bundle
pkg:composer/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: 2026-03-24 10:11:33 UTC
README
Installation
TuttoDataGridBundle can be conveniently installed via Composer. Just add the
following to your composer.json file:
// composer.json
{
// ...
require: {
// ...
"tutto/xhtml-bundle": "1.0.*@dev"
}
}
In AppKernel.php file add this:
<?php
// in AppKernel::registerBundles()
$bundles = array(
// ...
new Tutto\Bundle\DataGridBundle\TuttoDataGridBundle(),
new Tutto\Bundle\XhtmlBundle\TuttoXhtmlBundle(),
new \Tutto\Bundle\UtilBundle\TuttoUtilBundle()
// ...
);