jrk / adminatom-bundle
admin atom bundle for symfony2
Package info
github.com/jr-k/JrkAdminAtomBundle
Type:symfony-bundle
pkg:composer/jrk/adminatom-bundle
dev-master / 1.0.x-dev
2018-12-11 22:56 UTC
Requires
- php: >=5.3.2
- symfony/framework-bundle: 2.*
This package is auto-updated.
Last update: 2026-03-04 08:19:07 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'