ahs/persona-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Persona authentication system integration with Symfony aplications

dev-master 2012-11-12 08:13 UTC

This package is auto-updated.

Last update: 2021-02-23 20:33:18 UTC


README

This Bundle enables integration of the Persona authentication system. It provides a Symfony2 authentication provider so that users can login to a Symfony2 application via Persona.

Installation

  1. Install bundle:

The recommended way to install Persona Bundle is through composer. Just create a composer.json file and run the php composer.phar install command to install it:

      {
          "require": {
              "ahs/persona-bundle": "*"
          }
      }
  1. Add this bundle to your application's kernel:

     // app/ApplicationKernel.php
     public function registerBundles()
     {
         return array(
             // ...
             new AHS\PersonaBundle\AHSPersonaBundle(),
             // ...
         );
     }  
    
  2. Configure your new firewal:

     # app/config/security.yml
     firewalls:
         persona_secured:
             pattern:    ^/
             persona:      true
             logout: true
             anonymous: true
    
  3. Change default configuration (optional):

     # app/config/config.yml
     ahs_persona:
         verifier_url: "your verifier url"
         audience_url: "your audience host"
    

By default bundle works with in_memory provider.

TODO

  • Provide sample controller
  • Provide twig helper for login/logout buttons
  • Create provider for FOSUserBundle
  • Promote Mozilla Persona!
  • Improve readme