Download the PHP package imemento/guard-laravel without Composer
On this page you can find all versions of the php package imemento/guard-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download imemento/guard-laravel
More information about imemento/guard-laravel
Files in imemento/guard-laravel
Package guard-laravel
Short Description Our custom guard for Laravel
License MIT
Homepage https://github.com/mementohub/guard-laravel
Informations about the package guard-laravel
iMemento JWT Guard for Laravel
Takes care of the authorization and sets the roles and permissions for the user and consumer. Depends on the iMemento JWT package for JWT related tasks. Decrypting the tokens happens in the JWT package.
Install
The package uses Service Discovery. Still, if necessary, you can add the service to config/app.php
:
In config/auth.php
add a guard with jwt as the driver:
In config/auth.php
add a user provider with static as the driver.
The model needs to be an instance of iMemento\SDK\Auth\User::class
or an extension of it.
Dependencies
Since this package handles multiple operations in order to achieve the desired results, the following
.env
variables should be properly defined:
Usage
To use the JWT Guard for all the routes in your routes/api.php
file you just need to add it
to the api
middleware group in app/Http/Kernel.php
.
If your API exposes public endpoints, the ones that should be guarded by the JWT Guard should be specifically grouped:
Authenticated user
Once the Guard has been applied, the app will have access to an authenticated user through auth()->user()
.
The following fields are added to the current user and can be used in the application's policies.
The fields id, agency_id can be null, roles can be empty.
All versions of guard-laravel with dependencies
laravel/framework Version ^8.0
imemento/sdk-auth Version ~8.1.0
imemento/jwt Version ~8.1.0