2017 © Pedro Peláez
 

symfony-bundle crud-bundle

GiBiLogic CRUD Bundle

image

gibilogic/crud-bundle

GiBiLogic CRUD Bundle

  • Friday, April 6, 2018
  • by gibilogic
  • Repository
  • 1 Watchers
  • 2 Stars
  • 1,570 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 5 Open issues
  • 28 Versions
  • 8 % Grown

The README.md

GiBiLogic CrudBundle

A Symfony 2 bundle that contains simple CRUD-oriented services and helpers., (*1)

This bundle helps creating CRUD systems for Doctrine entities by:, (*2)

  • simplifying filtering and sorting operations
  • handling the (optional) pagination
  • making the hydration mode accessible to top-level methods

This bundle uses the following libraries/framework:, (*3)

  • Symfony 2 HTTP kernel
  • Doctrine ORM

ATTENTION - Do not use the older 1.* version: it won't be supported any more. So, switch to the 2.* version and happy coding!, (*4)

Installation

Add this bundle to the composer.json of your application with the console command:, (*5)

composer require gibilogic/crud-bundle

Or, if you are using composer.phar, use the console command:, (*6)

php composer.phar require gibilogic/crud-bundle

Then add the bundle to your app's AppKernel class:, (*7)

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Gibilogic\CrudBundle\GibilogicCrudBundle(),
            // ...
        );

        // ...

        return $bundles;
    }

    // ...
}

Configuration

No app configuration is needed; just install the bundle and create your entities classes (repositories, services and controllers)., (*8)

Usage

Click here to read the full bundle's documentation., (*9)

The Versions

15/10 2016

dev-branch/2.0.3

dev-branch/2.0.3 https://github.com/gibilogic/crud-bundle

GiBiLogic CRUD Bundle

  Sources   Download

MIT

The Requires

 

crud

15/10 2016
22/09 2016
22/07 2016
15/07 2016
21/06 2016
02/10 2015
15/09 2015