User Manager Bundle for FOSUserBundle
This bundle is an admin panel for the users from the Friends Of Symfony User Bundle. It allow to perform basic CRUD operations on the users., (*1)
Install
- Install the FOSUserBundle
- Download lracicotFOSUserManagerBundle using composer
- Enable the Bundle
- Import lracicotFOSUserManagerBundle routing files
Step 1: Install the FOSUserBundle
Follow the instructions from the FOSUserBundle documentation., (*2)
Step 2: Download lracicotFOSUserManagerBundle using composer
Require the bundle using composer:, (*3)
$ composer require "lracicot/fosusermanagerbundle" "v0.1-alpha"
Step 3: Register the bundle
Enable the bundle in the kernel:, (*4)
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new lracicot\FOSUserManagerBundle\lracicotFOSUserManagerBundle(),
// ...
);
}
Step 4: Import lracicotFOSUserManagerBundle routing files
# app/config/routing.yml
lracicot_fos_user_manager:
resource: "@lracicotFOSUserManagerBundle/Resources/config/routing.xml"
prefix: /admin/user/
You can change the prefix for whatever you want to match your application configurations., (*5)
Contributing
Any code review, suggestions or pull requests would be appreciated. Make sure that your changes have tests., (*6)