PHPackages                             muffycompo/oidconnect-laravel - 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. muffycompo/oidconnect-laravel

ActiveLibrary

muffycompo/oidconnect-laravel
=============================

OpenID Connect client library for Laravel Framework

26391PHP

Since Dec 7Pushed 8y ago1 watchersCompare

[ Source](https://github.com/muffycompo/oidconnect-laravel)[ Packagist](https://packagist.org/packages/muffycompo/oidconnect-laravel)[ RSS](/packages/muffycompo-oidconnect-laravel/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![](https://camo.githubusercontent.com/0a8f3184bdbace80617a31d5101c547ccdae7719f6b53372b6657c440e5df465/68747470733a2f2f686162726173746f726167652e6f72672f7765622f3763312f6131392f6537362f37633161313965373663663534636231616466323231376131353662373331302e706e67)](https://camo.githubusercontent.com/0a8f3184bdbace80617a31d5101c547ccdae7719f6b53372b6657c440e5df465/68747470733a2f2f686162726173746f726167652e6f72672f7765622f3763312f6131392f6537362f37633161313965373663663534636231616466323231376131353662373331302e706e67)

The OpenIDConnect Laravel package is meant to provide you an opportunity to easily authenticate users using OpenID Connect protocol.

[![Latest Stable Version](https://camo.githubusercontent.com/cdf02232d131504ad0891e061e81eb932831a75e960b3016f33c9e12c8296bfb/68747470733a2f2f706f7365722e707567782e6f72672f6d75666679636f6d706f2f6f6964636f6e6e6563742d6c61726176656c2f762f737461626c65)](https://packagist.org/packages/muffycompo/oidconnect-laravel)[![Latest Unstable Version](https://camo.githubusercontent.com/c09638d57d8f20f9649963f0944d2337791d6444d941458ea228e9efaaf7e0bd/68747470733a2f2f706f7365722e707567782e6f72672f6d75666679636f6d706f2f6f6964636f6e6e6563742d6c61726176656c2f762f756e737461626c65)](https://packagist.org/packages/muffycompo/oidconnect-laravel)[![Total Downloads](https://camo.githubusercontent.com/133384df957fd57a23366099feb5378e57a397ab6d03eec4bb5c3d73f43ffd81/68747470733a2f2f706f7365722e707567782e6f72672f6d75666679636f6d706f2f6f6964636f6e6e6563742d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/muffycompo/oidconnect-laravel)[![License](https://camo.githubusercontent.com/6975d99e8a4b8f2ee4bb2684ed8aad9fb91c35230f1cce213c06b6f5425dfd14/68747470733a2f2f706f7365722e707567782e6f72672f6d75666679636f6d706f2f6f6964636f6e6e6563742d6c61726176656c2f6c6963656e7365)](https://packagist.org/packages/muffycompo/oidconnect-laravel)

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

[](#installation)

To install this package you will need:

- Laravel 5.5+
- PHP 7.1+

Use composer to install

```
composer require muffycompo/oidconnect-laravel:dev-master
```

Open `config/app.php` and register the required service providers above your application providers.

```
'providers' => [
    ...
    Laravel\Socialite\SocialiteServiceProvider::class,
    Furdarius\OIDConnect\ServiceProvider::class
    ...
]
```

If you'd like to make configuration changes in the configuration file you can pubish it with the following Aritsan command:

```
php artisan vendor:publish --provider="Furdarius\OIDConnect\ServiceProvider"
```

After that, roll up migrations:

```
php artisan migrate
```

Usage
-----

[](#usage)

#### Configuration

[](#configuration)

At first you will need to add credentials for the OpenID Connect service your application utilizes. These credentials should be placed in your `config/opidconnect.php` configuration file.

```
