Package Data | |
---|---|
Maintainer Username: | m1guelpf |
Maintainer Contact: | christoffermartinsen@gmail.com (Christoffer Martinsen) |
Package Create Date: | 2016-03-07 |
Package Last Update: | 2024-11-07 |
Home Page: | https://socialiteproviders.com/GitLab/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:17:52 |
Package Statistics | |
---|---|
Total Downloads: | 472,820 |
Monthly Downloads: | 11,903 |
Daily Downloads: | 506 |
Total Stars: | 11 |
Total Watchers: | 4 |
Total Forks: | 6 |
Total Open Issues: | 0 |
composer require socialiteproviders/gitlab
Please see the Base Installation Guide, then follow the provider specific instructions below.
config/services.php
'gitlab' => [
'client_id' => env('GITLAB_CLIENT_ID'),
'client_secret' => env('GITLAB_CLIENT_SECRET'),
'redirect' => env('GITLAB_REDIRECT_URI')
],
Configure the package's listener to listen for SocialiteWasCalled
events.
Add the event to your listen[]
array in app/Providers/EventServiceProvider
. See the Base Installation Guide for detailed instructions.
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// ... other providers
'SocialiteProviders\\GitLab\\GitLabExtendSocialite@handle',
],
];
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::with('gitlab')->redirect();
id
nickname
name
email
avatar