silksh / jasuwienas-data-table
Integrates datatable into Symfony2 project.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 4
Type:symfony-bundle
This package is not auto-updated.
Last update: 2025-08-15 13:18:12 UTC
README
Integrates datatable into Symfony2 project.
Installation
- Add as composer dependency:
composer require jasuwienas/data-table
- Add in application kernel:
class AppKernel extends Kernel
{
public function registerBundles()
{
//...
$bundles[] = new \Jasuwienas\DataTableBundle\DataTableBundle();
return $bundles;
}
}