PHPackages                             philippspeck/laravel-oidc-client - 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. philippspeck/laravel-oidc-client

ActiveLibrary

philippspeck/laravel-oidc-client
================================

1.0.0(2y ago)05MITPHPPHP &gt;=8.0

Since Jan 2Pushed 2y agoCompare

[ Source](https://github.com/philippspeck/laravel-oidc-client)[ Packagist](https://packagist.org/packages/philippspeck/laravel-oidc-client)[ Fund](https://paypal.me/maicol072001/10eur)[ GitHub Sponsors](https://github.com/maicol07)[ RSS](/packages/philippspeck-laravel-oidc-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

OIDC Client
===========

[](#oidc-client)

A Laravel package for delegating authentication to an OpenID Provider.

> This package is an heavenly modified fork of [cabinetoffice / oidc-client — Bitbucket](https://bitbucket.org/cabinetoffice/oidc-client)

Requirements
------------

[](#requirements)

- PHP 8.0+
- Laravel 8+
- Composer 2

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

[](#installation)

Begin by adding this package to your depedencies with the command:

```
composer require maicol07/laravel-oidc-client
```

If you have opted out from auto discovery, you'll need to add the following line to the list of registered service providers in `config/app.php`:

```
Maicol07\OIDCClient\OIDCServiceProvider::class
```

Edit your `config/auth.php` file to use OpenID as the authentication method for your users:

```
'guards' => [
    'web' => [
        'driver' => 'oidc',
        ...
    ],
    ...
],
```

Configuration
-------------

[](#configuration)

You can set the following environment variables to adjust the package settings:

- `OIDC_CLIENT_ID`: Client ID of your app. This is commonly provided by your OIDC provider.
- `OIDC_CLIENT_SECRET`: Client secret of your app. This is commonly provided by your OIDC provider.
- `OIDC_PROVIDER_URL`: URL of your OIDC provider. This is used if your provider supports OIDC Auto Discovery.
- `OIDC_PROVIDER_NAME`: This is a short name for your OpenID provider, which will only appears in your OpenID routes. Do not use spaces. Defaults to `oidc`
- `OIDC_CALLBACK_ROUTE_PATH`: A path (with or without leading slash) to append to the provider name, to make the callback route path. Defaults to `callback`Example with the default values: `oidc/callback` (`OIDC_PROVIDER_NAME` + `/` + `OIDC_CALLBACK_ROUTE_PATH`)
- `OIDC_VERIFY`: Verify SSL when sending requests to the server. Defaults to `true`. (Optional: You can set `OIDC_CERT_PATH` to an SSL certificate path if you set this option to `false`)
- `OIDC_HTTP_PROXY`: If you have a proxy, set it here.
- `OIDC_SCOPES`: A list of scopes, separated by a comma (`,`). Defaults to `['openid']`. Example of valid value: `openid,email`
- `OIDC_AUTHORIZATION_ENDPOINT_QUERY_PARAMS`: A list of query parameters to add to the authorization endpoint encoded as a JSON object. Example of valid value: `{"response_type":"code"}`
- `OIDC_DISABLE_STATE_MIDDLEWARE_FOR_POST_CALLBACK`: A boolean to disable the registration of the `OIDCStateMiddleware` middleware.
    This middleware rebuilds the session token held in the `state` parameter of a `POST` request to the `callback` route.

You can find other options to set and their env variables in `config/oidc.php`. Note that some options are not required (like endpoints) if you use OIDC auto discovery!

You can also publish the config file (`config/oidc.php`) if you want:

```
php artisan vendor:publish --provider="Maicol07\OIDCClient\OIDCServiceProvider"
```

How to use
----------

[](#how-to-use)

Once everything is set up, you can replace your login system with a call to the route `route('oidc.login')`. For logouts, use the route `route('oidc.logout')`.

You can set the following environment variables to specify the routes/URLs you want your users to be redirected to upon successful authentication/logout: `OIDC_REDIRECT_PATH_AFTER_LOGIN` and `OIDC_REDIRECT_PATH_AFTER_LOGOUT`.

You may want to create your own `User` model. If yes, then you must extend `Maicol07\OIDCClient\User` in order to get auth working.

Check your `auth.providers.users.model` config value: it must be set to your custom `User` model or to `Maicol07\OIDCClient\User` instead.

---

> Originally developed by Cabinet Office Digital Development in October 2019.
>
> Currently maintained by [maicol07](https://maicol07.it) from October 2021

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 68.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

861d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f872ffbcb7201e0e619caf8e18af632c161f9fa2ed10068bb4142ee5b0d503ab?d=identicon)[philippspeck](/maintainers/philippspeck)

---

Top Contributors

[![maicol07](https://avatars.githubusercontent.com/u/9463142?v=4)](https://github.com/maicol07 "maicol07 (24 commits)")[![eviweb](https://avatars.githubusercontent.com/u/1310382?v=4)](https://github.com/eviweb "eviweb (10 commits)")[![philippspeck](https://avatars.githubusercontent.com/u/6969539?v=4)](https://github.com/philippspeck "philippspeck (1 commits)")

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/philippspeck-laravel-oidc-client/health.svg)

```
[![Health](https://phpackages.com/badges/philippspeck-laravel-oidc-client/health.svg)](https://phpackages.com/packages/philippspeck-laravel-oidc-client)
```

###  Alternatives

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135192.6k5](/packages/statamic-rad-pack-runway)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
