Package Data | |
---|---|
Maintainer Username: | maen-bn |
Maintainer Contact: | b.norcombe@gmail.com (Benjamin Norcombe) |
Package Create Date: | 2014-06-27 |
Package Last Update: | 2014-06-30 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:01:03 |
Package Statistics | |
---|---|
Total Downloads: | 13 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
##OpenSSO Authenication for Laravel 4
This is a provider for adding a OpenSSO driver to your authentication system in Laravel 4.1
To install this package through composer, edit your project's composer.json
file to require maen/opensso
.
"require": {
"laravel/framework": "4.1.*",
"maen/opensso": "dev-master"
},
"minimum-stability" : "dev"
Next, update Composer from the terminal:
composer update
##Configuration
You will need to add a opensso configuartion file to app/config/
called opensso.php
and set out in the following way with the correct information for your OpenSSO installation
return array(
"serverAddress" => "https://sso.mysite.com/",
"uri" => "myuri",
"cookiepath" => "/",
"cookiedomain" => ".mysite.com",
"cookiename" => "mycookiename",
);
Also make sure in auth/config/auth.php
the driver is set to opensso
.
Finally add the OpenSSO servicer provider into auth/config/app.php
as follows
'Maen\Opensso\OpenssoServiceProvider'
##Usage
Now your Auth driver is using OpenSSO you will be able to use the Laravel Auth
class to authenication users.
###Examples
//Authenicating using the OpenSSO TokenID from a cookie
Auth::attempt();
//Authenicating using user input
$input = Input::only('username', 'password');
Auth::attempt($input);
//Retriving the OpenSSO attributes of a logged in user
$user = Auth::user();