pe / symfony-bundle-grid
Symfony integration of pe/component-grid
Package info
github.com/pavlenko/symfony-bundle-grid
Type:symfony-bundle
pkg:composer/pe/symfony-bundle-grid
dev-master / 1.0.x-dev
2018-09-08 05:11 UTC
Requires
- php: ^5.5.9|>=7.0.8
- pe/component-grid: ^1.0@dev
- symfony/framework-bundle: ~3.4|~4.0
This package is auto-updated.
Last update: 2026-03-08 22:47:50 UTC
README
This bundle integrates with pe/component-grid.
Installation
Install the library via Composer by running the following command:
composer require pe/symfony-bundle-grid
Then enable the bundle in your kernel:
<?php // app/AppKernel.php class AppKernel { public function registerBundles() { $bundles = [ // ... new PE\Bundle\GridBundle\PEGridBundle(), // ... ]; } }
or for Symfony 4.0
<?php // SF 4.0 config/bundles.php return [ PE\Bundle\GridBundle\PEGridBundle::class => ['all' => true], ];