kirschbaum-development / laravel-socialite-cognito
A custom AWS Cognito driver for Laravel Socialite
Requires
- php: ^7.3
- laravel/socialite: ^5.2
Requires (Dev)
- nunomaduro/collision: ^5.3
- orchestra/testbench: ^6.18
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-10-18 20:24:14 UTC
README
This package is a custom AWS Cognito driver for Laravel Socialite.
Installation
You can install the package via composer:
composer require kirschbaum-development/laravel-socialite-cognito
Usage
Once you install the package, add the next config values in you config/services.php
configuration file:
'cognito' => [ 'base_uri' => env('COGNITO_URI'), 'client_id' => env('COGNITO_CLIENT_ID'), 'client_secret' => env('COGNITO_CLIENT_SECRET'), 'redirect' => env('COGNITO_REDIRECT_URI'), ],
Then, you can use the driver as you would use it in the Laravel Socialite's official documentation. Use cognito
keyword when you want to instantiate the driver:
$user = Socialite::driver('cognito')->user();
The default scopes are:
$scopes = [ 'openid', 'profile', 'aws.cognito.signin.user.admin', ];
You can add more scopes or override the default ones by using scopes
or setScopes
methods like the official documentation shows (link)
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
If you discover any security related issues, please email guette@kirschbaumdevelopment.com or nathan@kirschbaumdevelopment.com instead of using the issue tracker.
Sponsorship
Development of this package is sponsored by Kirschbaum Development Group, a developer driven company focused on problem solving, team building, and community. Learn more about us or join us!
License
The MIT License (MIT). Please see License File for more information.