2017 © Pedro PelĂĄez
 

symfony-bundle lightuser-bundle

Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user.

image

ee/lightuser-bundle

Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user.

  • Tuesday, September 24, 2013
  • by Konrad-Podgorski
  • Repository
  • 6 Watchers
  • 0 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

LightUserBundle

Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user., (*1)

Important Note: This bundle is meant to work with Doctrine ORM only, (*2)

Installation

Step 1 - Composer

"ee/lightuser-bundle": "dev-master"

Step 2 - Enable bundle

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            [...]
            new EE\LightUserBundle\EELightUserBundle()
        );

    [...]

Step 3 - Create User Entity

Step 4 - Configuration

You must provide entity class (yup, that one from previous step), (*5)

# app/config/config.yml

ee_light_user:
    entity:
        user:
            class: Acme\DemoBundle\Entity\User

Register user provider, (*6)

# app/config.security.yml

providers:
    lightuser:
        id: ee_light_user.user_provider

Cookbook recipes

The Versions

24/09 2013

dev-master

9999999-dev

Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user.

  Sources   Download

MIT

The Requires

 

user user manager user provider