PHP code example of recca0120 / socialite

1. Go to this page and download the library: Download recca0120/socialite library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

recca0120 / socialite example snippets


'providers' => [
    ...
    'Recca0120\Socialite\SocialiteServiceProvider',
];

'aliases' => [
    ...
    'Socialite' => 'Recca0120\Socialite\Facades\Socialite'
];

'providers' => [
    ...
    Recca0120\Socialite\SocialiteServiceProvider::class,
];

'alias' => [
    ...
    'Socialite' => Recca0120\Socialite\Facades\Socialite::class
];