Archived
1
0
Fork 0

app/library/OAuth/Adapter/League.php: add linkedIn provider.

This commit is contained in:
Henrik Hautakoski 2018-08-08 22:51:23 +02:00
parent cd694ebbca
commit c28f8cafa5
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -13,9 +13,10 @@ class League implements AdapterInterface
* @var array
*/
protected $_providerClasses = array(
'github' => '\League\OAuth2\Client\Provider\Github',
'gitlab' => '\Omines\OAuth2\Client\Provider\Gitlab',
'google' => '\League\OAuth2\Client\Provider\Google',
'github' => '\League\OAuth2\Client\Provider\Github',
'gitlab' => '\Omines\OAuth2\Client\Provider\Gitlab',
'google' => '\League\OAuth2\Client\Provider\Google',
'linkedin' => '\League\OAuth2\Client\Provider\LinkedIn',
);
/**