ndoptor/integration-sso-laravel

SSO for N-DOPTOR - Laravel

v3.2.2 2023-05-15 14:37 UTC

This package is not auto-updated.

Last update: 2024-04-29 19:29:14 UTC


README

doptor.png

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 named afterLogin
  • Similarly, you can create a method in Controller.php named afterLogout 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.