dev-master
9999999-dev https://github.com/ahilles107/PersonaBundlePersona authentication system integration with Symfony aplications
MIT
The Requires
by Pawel Mikolajczuk
security persona
Wallogit.com
2017 © Pedro Peláez
Persona authentication system integration with Symfony aplications
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., (*1)
Install bundle:, (*2)
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:, (*3)
{
"require": {
"ahs/persona-bundle": "*"
}
}
Add this bundle to your application's kernel:, (*4)
// app/ApplicationKernel.php
public function registerBundles()
{
return array(
// ...
new AHS\PersonaBundle\AHSPersonaBundle(),
// ...
);
}
Configure your new firewal:, (*5)
# app/config/security.yml
firewalls:
persona_secured:
pattern: ^/
persona: true
logout: true
anonymous: true
Change default configuration (optional):, (*6)
# app/config/config.yml
ahs_persona:
verifier_url: "your verifier url"
audience_url: "your audience host"
By default bundle works with in_memory provider., (*7)
Persona authentication system integration with Symfony aplications
MIT
security persona