tutto/datagrid-bundle

This bundle provide build data grids

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master / 1.0.x-dev 2014-11-25 16:36 UTC

This package is not auto-updated.

Last update: 2024-06-18 01:15:53 UTC


README

TuttoDataGridBundle

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()
    // ...
);