2017 © Pedro Peláez
 

symfony-bundle user-bundle

Manage user authentication

image

libre-informatique/user-bundle

Manage user authentication

  • Monday, July 17, 2017
  • by beta
  • Repository
  • 4 Watchers
  • 1 Stars
  • 85 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

This project has been abandoned and is no longer maintained. you should use https://github.com/libre-informatique/SonataSyliusUserBundle, (*1)

SymfonyLibrinfoUserBundle

Manage user authentication, (*2)

The goal of this bundle is to define a minimum configured environment for user authentication., (*3)

Default User and Group classes are defined and mapped with ORM driver., (*4)

This bundle relies heavily on FOSUserBundle., (*5)

Installation

Prequiresites

  • having a working Symfony2 environment
  • having created a working Symfony2 app (including your DB and your DB link)
  • having composer installed (here in /usr/local/bin/composer, with /usr/local/bin in the path)

Downloading

$ composer require libre-informatique/user-bundle dev-master

Sonata bundles

Please refer to the Sonata Project's instructions, foundable here : https://sonata-project.org/bundles/user/2-2/doc/reference/installation.html, (*6)

The "libre-informatique" bundles

Edit your app/AppKernel.php file and add your "libre-informatique/user-bundle" :, (*7)

    // app/AppKernel.php
    // ...
    public function registerBundles()
    {
        $bundles = array(
            // ...

            // The libre-informatique bundles
            new FOS\UserBundle\FOSUserBundle(),
            new Sonata\UserBundle\SonataUserBundle('FOSUserBundle'),
            new Librinfo\UserBundle\LibrinfoUserBundle(),

            // your personal bundles
        );
    }

Usages

Configuring your FOS_User properties

# app/config/config.yml (or any other file that is loaded by your bundle)
fos_user:
    # ...
    db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
    firewall_name: N/A 
    # ...
    user_class: Blast\BaseEntitiesBundle\Entity\GenericEntity
    group:
        group_class: Blast\BaseEntitiesBundle\Entity\GenericEntity
        group_manager: sonata.user.orm.group_manager
    service:
        user_manager: sonata.user.orm.user_manager

Note

Using Blast\BaseEntitiesBundle\Entity\GenericEntity as User and Group classes let this bundle defining it's own User and Group classes. If you define custom User and Group Classes, the bundle will not override your values., (*8)

Configuring the Json type from sonata-project/doctrine-extension

# app/config/config.yml (or any other file that is loaded by your bundle)
doctrine:
    dbal:
        # ...
        types:
            json: Sonata\Doctrine\Types\JsonType
        # ...

Note: an abvious mistake can be the addition of this key outside the main doctrine key, where you have all your DB configuration., (*9)

Note:

Blast\BaseEntitiesBundle\Entity\GenericEntity and default classes values (FOS\UserBundle\Entity\User and FOS\UserBundle\Entity\Group) will be replaced with defaults LibrinfoUserBundle configuration values in LibrinfoUserBundle/Resources/config/bundles/fos_user.yml. Custom values in app/config/config.yml for the key fos_user will not be overriden by the LibrinfoUserBundle., (*10)

Updating your schema to add User and Group entities tables

$ app/console doctrine:schema:validate
$ app/console doctrine:schema:update --dump-sql
$ app/console doctrine:schema:update --force

The Versions

17/07 2017

dev-master

9999999-dev https://github.com/libre-informatique/SymfonyLibrinfoUserBundle

Manage user authentication

  Sources   Download

GPL-3.0

The Requires

 

by Baptiste SIMON
by Vivien FRASCA

symfony sonata e-venement libio

09/02 2017

0.1

0.1.0.0 https://github.com/libre-informatique/SymfonyLibrinfoUserBundle

Manage user authentication

  Sources   Download

GPL-3.0

The Requires

 

by Baptiste SIMON
by Vivien FRASCA

symfony sonata e-venement libio