ndoptor / integration-sso-laravel
SSO for N-DOPTOR - Laravel
v3.2.2
2023-05-15 14:37 UTC
Requires
- php: >=7.0
- ext-json: *
- ext-zlib: *
- laravel/framework: ^7.0|^8.0|^9.0|^10.0
- laravel/ui: ^4.2
- laravelcollective/html: ^6.0
README
N-DOPTOR SSO
Single Sign On Laravel Package for N-DOPTOR
Installation
You can install the package via composer:
composer require ndoptor/integration-sso-laravel
Laravel 7.x and above
The package will automatically register itself, so you can start using it immediately.
Configuration
After installing the package, need to update or add these lines on .env
file
LOGIN_SSO=true
LOGIN_SSO_URL=https://n-doptor-accounts-stage.nothi.gov.bd/login
LOGOUT_SSO_URL=https://n-doptor-accounts-stage.nothi.gov.bd/logout
LOGIN_API=https://n-doptor-api-stage.nothi.gov.bd/login
NDOPTOR_API_URL=https://n-doptor-api-stage.nothi.gov.bd/
Update web.php
in routes
directory
- Remove
Auth::routes();
, if exists.
Use ndoptor.auth
for N-DOPTOR SSO authentication
Route::middleware(['ndoptor.auth'])->group(function () {
/// here your authentication route
});
Uses
- If you need to extra task after login, you can create a method in
Controller.php
namedafterLogin
- Similarly, you can create a method in
Controller.php
namedafterLogout
if you need
Credits
For any questions, you can reach out to the author of this package, Md. Hasan Sayeed.
Thank you for using it.