PHPackages                             siapble/sso\_wso2 - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. siapble/sso\_wso2

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

siapble/sso\_wso2
=================

Single sign on of WSO2 by Sahapat.

014PHP

Since Aug 28Pushed 7y agoCompare

[ Source](https://github.com/siapble/SSO_WSO2)[ Packagist](https://packagist.org/packages/siapble/sso_wso2)[ RSS](/packages/siapble-sso-wso2/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Installation
------------

[](#installation)

- Begin by installing this package through Composer. Just run following command to terminal.

```
composer require "siapble/sso_wso2:dev-master"

```

- Add the service provider. Open `config/app.php`, and add a new item to the providers array.

```
'providers' => [
	...
	siapble\sso_wso2\SingleSignOnServiceProvider::class,
	...
]
```

- Add the alias.

```
'aliases' => [
	...
	'SSO_WSO2' => siapble\sso_wso2\Facades\SSO_WSO2Facade::class,
	...
]
```

- Publish config file, Following command to terminal.

```
php artisan vendor:publish

```

Code Example
------------

[](#code-example)

```
