pe/symfony-bundle-grid

Symfony integration of pe/component-grid

dev-master / 1.0.x-dev 2018-09-08 05:11 UTC

This package is auto-updated.

Last update: 2024-05-08 18:39:28 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],
];