dev-master
9999999-devAllows Simpler integration of SimpleSAML and Laravel.
MIT
The Requires
- php >=5.4.0
- illuminate/support ~5.0
by David Cox Jr.
laravel saml illuminate simplesaml
Allows Simpler integration of SimpleSAML and Laravel.
Welcome to the even Simpler simplesamlphp integration for Laravel 5., (*1)
This library enables simple interaction between your Laravel application and using authentication from an IDP., (*2)
Feel free to bring up shortcomings in issues/PR so I can improve this and make it better for everyone., (*3)
Add the package to your composer.json:, (*4)
composer require ragingdave/simplersaml:dev-master
Add the service provider in config/app.php
:, (*5)
RagingDave\SimplerSaml\SimplerSamlServiceProvider::class,
(OPTIONALLY) Publish the config to make changes:, (*6)
php artisan vendor:publish --provider="RagingDave/SimplerSaml/SimplerSamlServiceProvider" --tag="config"
This is pretty customizable from the start so if there is something missing chances are, I missed it, and you can help improve the package by telling me about it and I'll see what I can do (OR better yet submit a PR)., (*7)
Saml User Model (simplersaml.model), (*8)
Routing (simplersaml.enableRoutes, simplersaml.routePrefix), (*9)
SP and IDP (simplersaml.sp, simplersaml.idp), (*10)
Redirects (simplersaml.loginRedirect, simplersaml.logoutRedirect), (*11)
So for this you can use the built-in middleware and augment them to add the saml isAuthenticated check, or use the SamlAuthenticate, and SamlRedirectIfAuthenticated included in this package. Anything more advanced like combining laravel session checking and saml session checking can be done by you by adding to the built-in Authenticate and RedirectIfAuthenticated., (*12)
There are a few events that are fired from this package to hook into the login and logout functions of the saml flow., (*13)
RagingDave\SimplerSaml\Events\SamlLogin RagingDave\SimplerSaml\Events\SamlLogout
These can be listened for and acted upon to enable creating/logging in the saml user into a local laravel session to use, (*14)
Auth::user(), Auth::check(), etc.
throughout the application. The problem here is that if the saml session times out, the laravel session could still be valid. The middleware in this package takes care of this so take a look in `` for an example., (*15)
Allows Simpler integration of SimpleSAML and Laravel.
MIT
laravel saml illuminate simplesaml