GitLab OAuth2 Provider for Laravel Socialite
382,446
11
4
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: christoffermartinsen@gmail.com (Christoffer Martinsen)
Package Create Date: 2016-03-07
Package Last Update: 2023-11-07
Home Page: https://socialiteproviders.com/GitLab/
Language: PHP
License: MIT
Last Refreshed: 2024-03-24 03:09:50
Package Statistics
Total Downloads: 382,446
Monthly Downloads: 9,031
Daily Downloads: 201
Total Stars: 11
Total Watchers: 4
Total Forks: 6
Total Open Issues: 0

GitLab

composer require socialiteproviders/gitlab

Installation & Basic Usage

Please see the Base Installation Guide, then follow the provider specific instructions below.

Add configuration to config/services.php

'gitlab' => [    
  'client_id' => env('GITLAB_CLIENT_ID'),  
  'client_secret' => env('GITLAB_CLIENT_SECRET'),  
  'redirect' => env('GITLAB_REDIRECT_URI') 
],

Add provider event listener

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',
    ],
];

Usage

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();

Returned User fields

  • id
  • nickname
  • name
  • email
  • avatar