pe/symfony-bundle-grid

Symfony integration of pe/component-grid

Maintainers

Package info

github.com/pavlenko/symfony-bundle-grid

Type:symfony-bundle

pkg:composer/pe/symfony-bundle-grid

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

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],
];