2017 © Pedro Peláez
 

symfony-bundle security-bundle

Enhances the Symfony SecurityBundle

image

p2/security-bundle

Enhances the Symfony SecurityBundle

  • Friday, February 13, 2015
  • by phillies2k
  • Repository
  • 1 Watchers
  • 3 Stars
  • 24 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

P2SecurityBundle

Installation

"require": {
    "p2/security-bundle": "~1.0"
}

Configuration

p2_security:
    document:   Acme\UserBundle\Document\User   # The user document class
    manager:    @user_manager                   # The service id of your user manager
    encoder:    sha256                          # The encoder algorithm to use

Usage

Simply extend your user document with the P2 Security user class., (*1)

<?php

namespace Acme\BlogBundle\Document;

use P2\Bundle\SecurityBundle\Security\User as SecurityUser;

class User extends SecurityUser
{
    // ...
}

Implement the UserManagerInterface:, (*2)

<?php

namespace Acme\BlogBundle\Repository;

use P2\Bundle\SecurityBundle\Security\UserManagerInterface;

class UserRepository extends DocumentRepository implements UserManagerInterface
{
    // ...
}

The Versions

13/02 2015

dev-master

9999999-dev http://github.com/phillies2k/security-bundle

Enhances the Symfony SecurityBundle

  Sources   Download

MIT

The Requires

 

by Philipp Boes

security bundle symfony

14/09 2013

dev-develop

dev-develop http://github.com/phillies2k/security-bundle

Enhances the Symfony SecurityBundle

  Sources   Download

MIT

The Requires

 

by Philipp Boes

security bundle symfony

15/07 2013

1.0.0

1.0.0.0 http://github.com/phillies2k/security-bundle

Enhances the Symfony SecurityBundle

  Sources   Download

MIT

The Requires

 

by Philipp Boes

security bundle symfony