Download the PHP package jessicaplant/passport-custom-jwt-claims without Composer
On this page you can find all versions of the php package jessicaplant/passport-custom-jwt-claims. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jessicaplant/passport-custom-jwt-claims
More information about jessicaplant/passport-custom-jwt-claims
Files in jessicaplant/passport-custom-jwt-claims
Package passport-custom-jwt-claims
Short Description Customize JWT claims in Laravel Passport access tokens
License MIT
Informations about the package passport-custom-jwt-claims
Laravel Passport Custom JWT Claims
Customize the JWT claims in Laravel/Passport access tokens
What are JWT claims?
All access tokens issued by Laravel/Passport are in fact JSON web tokens (JWT). Each token contains a set of claims consisting of JSON key value pairs. Because the token is cryptographically signed using a public/private RSA key pair we can trust that the claims contained in the token were issued by Laravel/Passport.
Here is an example token containing the default Laravel/Passport claims:
If we decode the token you get the following JWT payload object:
For reference, the claim aud
is the Laravel/Passport client_id that issued the token and the key sub
refers to the
user id in your laravel users table. Note that my client_id and user_id columns are UUID data types.
Why would you need custom claims?
The OpenID Connect protocol requires JWT claims that are not included in Laravel/Passport access tokens. Adding custom claims allows us to use access tokens issued by Laravel/Passport to authenticate with other services using OpenID Connect. For example, with this package it is possible to use a Laravel/Passport access token to authenticate a laravel user on a Couchbase Sync Gateway server.
Installation
Install the package via composer:
Add the service provider to the config/app.php providers array.
Do not include Laravel\Passport\PassportServiceProvider
in your providers array
as JwtClaimsServiceProvider
extends from it.
Configuration
To set your custom claims you must publish the config file:
This is the contents of the published file. Add additional claims as needed.