Download the PHP package ijagjeet/laravel-sso without Composer

On this page you can find all versions of the php package ijagjeet/laravel-sso. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-sso

Simple PHP SSO integration for Laravel

Latest Stable Version Total Downloads Latest Unstable Version License Scrutinizer Code Quality Build Status Code Intelligence Status

This Package Fork from https://github.com/ijagjeet/laravel-sso to modify some change

This package based on Simple PHP SSO skeleton package and made suitable for Laravel framework.

Requirements

Words meanings

How it works?

Client visits Broker and unique token is generated. When new token is generated we need to attach Client session to his session in Broker so he will be redirected to Server and back to Broker at this moment new session in Server will be created and associated with Client session in Broker's page. When Client visits other Broker same steps will be done except that when Client will be redirected to Server he already use his old session and same session id which associated with Broker#1.

Installation

Server

Install this package using composer.

Copy config file to Laravel project config/ folder.

Create table where all brokers will be saved.

Edit your app/Http/Kernel.php by removing throttle middleware and adding sessions middleware to api middlewares array. This is necessary because we need sessions to work in API routes and throttle middleware can block connections which we need.

Now you should create brokers. You can create new broker using following Artisan CLI command:

After that in user model you can add the relation for broker as below:

Now, you can register or create users using basic Laravel functionality and then set the brokers of that user as below:

Here, $user is the object of User Model and $brokers is the array of ids of broker.


Broker

Install this package using composer.

Copy config file to Laravel project config/ folder.

Change type value in config/laravel-sso.php file from server to broker.

Set 3 new options in your .env file:

SSO_SERVER_URL is your server's http url without trailing slash. SSO_BROKER_NAME and SSO_BROKER_SECRET must be data which exists in your server's brokers table.

Optionally set the column of your authentication username field on your server ('username' by default) .env file:

Edit your app/Http/Kernel.php by adding \IJagjeet\LaravelSSO\Middleware\SSOAutoLogin::class middleware to web middleware group. It should look like this:

Last but not least, you need to edit app/Http/Controllers/Auth/LoginController.php. You should add two functions into LoginController class which will authenticate your client through SSO server but not your Broker page.

That's all. For other Broker pages you should repeat everything from the beginning just changing your Broker name and secret in configuration file.

Example .env options:


All versions of laravel-sso with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2.5
guzzlehttp/guzzle Version ^6.0|^7.0
laravel/framework Version ^5.5|^7.0|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ijagjeet/laravel-sso contains the following files

Loading the files please wait ....