jrk/adminatom-bundle

admin atom bundle for symfony2

dev-master / 1.0.x-dev 2018-12-11 22:56 UTC

This package is auto-updated.

Last update: 2024-05-04 04:29:18 UTC


README

Setup

JrkAdminAtomBundle is a CRUD generator for Symfony2

  • Using composer

Add jrk/adminatom-bundle as a dependency in your project's composer.json file:

{
    "require": {
        "jrk/adminatom-bundle": "dev-master"
    }
}

Update composer

php composer update
or 
php composer.phar update


- Add JrkAdminAtomBundle to your application kernel

``` php
<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Jrk\AdminAtomBundle\JrkAdminAtomBundle(),
    );
}

Configuration

# app/config/config.yml

jrk_admin_atom:
    routing:
        prefix: 'back'

Usage