Skip to content

[Symfony Bundle] Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user. Project maintained by @konradpodgorski

License

Notifications You must be signed in to change notification settings

EE/LightUserBundle

Repository files navigation

LightUserBundle

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

Important Note: This bundle is meant to work with Doctrine ORM only

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)

# app/config/config.yml

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

Register user provider

# app/config.security.yml

providers:
    lightuser:
        id: ee_light_user.user_provider

Cookbook recipes

About

[Symfony Bundle] Inspired by FOSUserBundle but much simpler. Perfect when you just need a simple user. Project maintained by @konradpodgorski

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages