goms / cognito
AWS Cognito provider for Laravel Authentication
1.0.0
2020-07-21 12:47 UTC
Requires
- php: ^7.3
- ext-gmp: *
- ext-json: *
- illuminate/contracts: ^7.1
- web-token/jwt-checker: ^2.0
- web-token/jwt-core: ^2.0
- web-token/jwt-signature: ^2.0
- web-token/jwt-signature-algorithm-rsa: ^2.0
Requires (Dev)
- doctrine/coding-standard: ^6.0
- illuminate/cache: ~7.1
- illuminate/config: ~7.1
- illuminate/container: ~7.1
- phpstan/phpstan: ^0.12.4
- phpunit/phpunit: ^9.0
- web-token/jwt-easy: ~2.0
This package is auto-updated.
Last update: 2025-03-21 23:23:54 UTC
README
Laravel Cognito Provider 🔑
This library provides a CognitoUserProvider for Laravel.
Installation
composer require customergauge/laravel-cognito-provider
Usage
Auth configuration
In the auth.php
file, add the following settings:
Default Guard
'defaults' => [ 'guard' => 'cognito-token', 'passwords' => 'users', ],
The new Guard configuration
'guards' => [ 'cognito-token' => [ 'driver' => 'token', 'provider' => 'cognito-provider', 'storage_key' => 'cognito_token', 'hash' => false, ], ],
The User Provider configuration
'providers' => [ 'cognito-provider' => [ 'driver' => \CustomerGauge\Cognito\CognitoUserProvider::class, ], ],
Cognito Environment Variables
/* |-------------------------------------------------------------------------- | Cognito Custom Configuration |-------------------------------------------------------------------------- | | The following configuration is not part of standard Laravel application. | We use it to configure the CognitoUserProvider process so that we can | properly validate the JWT token provided by AWS Cognito. | */ 'cognito' => [ 'pool' => env('AWS_COGNITO_USER_POOL_ID'), 'region' => env('AWS_COGNITO_USER_POOL_REGION'), ],
Auth Middleware
Configure the auth
middleware at App\Http\Kernel
with 'auth:cognito-token'