PHPackages                             eduardoledo/generic-admin-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. eduardoledo/generic-admin-bundle

ActiveSymfony-bundle[Admin Panels](/categories/admin)

eduardoledo/generic-admin-bundle
================================

A generic, easy to use CRUD generator for Symfony2

021JavaScript

Since Apr 11Pushed 12y ago1 watchersCompare

[ Source](https://github.com/eduardoledo/GenericAdminBundle)[ Packagist](https://packagist.org/packages/eduardoledo/generic-admin-bundle)[ RSS](/packages/eduardoledo-generic-admin-bundle/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependenciesVersions (1)Used By (0)

GenericAdminBundle
==================

[](#genericadminbundle)

A generic, easy to use CRUD generator for Symfony2

Prerequisites
-------------

[](#prerequisites)

This version of the bundle requires [FOSUserBundle](https://github.com/FriendsOfSymfony/FOSUserBundle), [Makerlabs PagerBundle](https://github.com/makerlabs/PagerBundle) and [StfalconTinymceBundle](https://github.com/stfalcon/TinymceBundle). Both packages are installed automatically if not found.

Installation
------------

[](#installation)

Installation is a quick 3 steps process:

1. Download GenericAdminBundle using composer
2. Enable the bundle
3. Create your controller class
4. Configure the GenericAdminBundle
5. Import the GenericAdminBundle routing

### Step 1: Download FOSUserBundle using composer

[](#step-1-download-fosuserbundle-using-composer)

Add GenericAdminBundle in your composer.json:

```
{
    "require": {
        "eduardoledo/generic-admin-bundle": "*"
    }
}
```

Now tell composer to download the bundle by running the command:

```
$ php composer.phar update eduardoledo/generic-admin-bundle
```

Composer will install the bundle to your project's `vendor/eduardoledo` directory.

### Step 2: Enable the bundle

[](#step-2-enable-the-bundle)

Enable the bundle in the kernel:

```
