Internet Guru Laravel User is a library that provides seamless integration with various social authentication providers. It stores the user's social identity in the database and allows the user to link multiple social identities to a single account. It also provides temporary login link to the user's email address.
Branch | Status | Code Coverage |
---|---|---|
Main | ||
Staging | ||
Dev |
- Account – application user account.
- Identity – provider & provider_user_id.
- Register – create a new account with a new identity linked to it.
- Connect – link a new identity to the current account.
- Disconnect – unlink an existing identity from the current account.
- Transfer – unlink an existing identity from one account and link it to the current one.
-
Install the package via Composer:
composer require internetguru/laravel-user
-
Publish the migration files:
php artisan vendor:publish --provider="InternetGuru\LaravelUser\LaravelUserServiceProvider" --tag="migrations"
-
Run the migrations:
php artisan migrate
Add your social authentication credentials to your .env
file:
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_REDIRECT_URI=your-google-redirect-uri
FACEBOOK_CLIENT_ID=your-facebook-client-id
FACEBOOK_CLIENT_SECRET=your-facebook-client-secret
FACEBOOK_REDIRECT_URI=your-facebook-redirect-uri
SEZNAM_CLIENT_ID=your-seznam-client-id
SEZNAM_CLIENT_SECRET=your-seznam-client-secret
SEZNAM_REDIRECT_URI=your-seznam-redirect-uri
<x-auth::buttons action="login" :showRemember="true" />
<x-auth::buttons action="login" :showRemember="false" />
<x-auth::buttons action="register"/>
<x-auth::buttons action="connect"/>
<a href="{{ route('auth.action', [
'provider' => InternetGuru\LaravelUser\Enums\Provider::GOOGLE,
'action' => InternetGuru\LaravelUser\Enums\ProviderAction::DISCONNECT,
]) }}">Disconnect Google</a>
The MIT License (MIT). Please see License File for more information.