pe / symfony-bundle-grid
Symfony integration of pe/component-grid
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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: 2024-10-08 19:41:24 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], ];