silksh/jasuwienas-data-table

Integrates datatable into Symfony2 project.

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 4

Type:symfony-bundle

v1.0.1 2017-05-10 08:25 UTC

This package is not auto-updated.

Last update: 2024-05-10 07:44:08 UTC


README

Integrates datatable into Symfony2 project.

Installation

  1. Add as composer dependency:
composer require jasuwienas/data-table
  1. Add in application kernel:
class AppKernel extends Kernel
{
    public function registerBundles()
    {
    //...
    $bundles[] = new \Jasuwienas\DataTableBundle\DataTableBundle();
    return $bundles;
    }
}