ndoptor / integration-sso-laravel
SSO for N-DOPTOR - Laravel
Installs: 550
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 1
pkg:composer/ndoptor/integration-sso-laravel
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=trueLOGIN_SSO_URL=https://n-doptor-accounts-stage.nothi.gov.bd/loginLOGOUT_SSO_URL=https://n-doptor-accounts-stage.nothi.gov.bd/logoutLOGIN_API=https://n-doptor-api-stage.nothi.gov.bd/loginNDOPTOR_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.phpnamedafterLogin - Similarly, you can create a method in
Controller.phpnamedafterLogoutif you need
Credits
For any questions, you can reach out to the author of this package, Md. Hasan Sayeed.
Thank you for using it.
