-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.11 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "peal/laravel-social-login",
"description": "Laravel social login through facebook,google,github",
"type": "library",
"keywords":["laravel","social login","login","facebook login","google login","github login"],
"license": "MIT",
"authors": [
{
"name": "Mohammed Minuddin(Peal)",
"email": "moinuddin7@gmail.com"
}
],
"autoload": {
"psr-4": {
"peal\\socialLogin\\":"src/"
}
},
"extra": {
"laravel": {
"providers": [
"peal\\socialLogin\\LoginServiceProvider"
],
"aliases": {
"FacebookLogin": "peal\\socialLogin\\Facades\\FacebookLogin",
"GoogleLogin": "peal\\socialLogin\\Facades\\GoogleLogin",
"GithubLogin": "peal\\socialLogin\\Facades\\GithubLogin"
}
}
},
"minimum-stability": "stable",
"require": {
"laravel/framework": "5.2.*|5.6.*|5.7.*|5.8.*|6.*",
"facebook/graph-sdk": "^5.6",
"google/apiclient": "^2.3",
"guzzlehttp/guzzle": "~6.0"
}
}