ndg0 / laravel-socialite-auth
A quick drop-in solution for authenticating users with Laravel socialite.
v0.2
2020-12-08 03:31 UTC
Requires
- illuminate/support: ~7|~8
- laravel/socialite: ^5.1
- socialiteproviders/google: ^4.0
Requires (Dev)
- orchestra/testbench: ~5|~6
- phpunit/phpunit: ~9.0
This package is auto-updated.
Last update: 2025-03-11 15:58:29 UTC
README
A quick drop-in solution for Laravel 8 to authenticate users with Laravel Socialite. Only Google currently supported.
Installation
Via Composer
$ composer require ndg0/laravel-socialite-auth
Usage
Add this to your .env
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URI=https://example.com/login/social/google/callback
Now your /login
page will prompt users to authenticate via Google.
If user is not in your Database, he will be automatically added.
App\Models\User
is being used.
Security
If you discover any security related issues, please email author email instead of using the issue tracker.