jrk / adminatom-bundle
admin atom bundle for symfony2
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/framework-bundle: 2.*
This package is auto-updated.
Last update: 2025-05-04 06:26:43 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'