-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
43 lines (43 loc) · 1.15 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
38
39
40
41
42
43
{
"name": "mi-lopez/laravel-sso",
"description": "Simple PHP SSO integration for Laravel",
"keywords": ["laravel", "sso", "authentication", "login"],
"homepage": "https://github.com/mi-lopez/laravel-sso",
"license": "MIT",
"authors": [
{
"name": "Martynas Žaliaduonis",
"email": "m.zaliaduonis@gmail.com",
"homepage": "https://github.com/zefy",
"role": "Developer"
}, {
"name": "Kunwar Chandra Pal",
"email": "raja.kcpal@gmail.com",
"homepage": "https://github.com/kcpal",
"role": "Developer"
}, {
"name": "Miguel López",
"email": "miguel.lopezt86@gmail.com",
"homepage": "https://github.com/mi-lopez",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.0",
"zefy/php-simple-sso": "^1.0"
},
"autoload": {
"psr-4": {
"Zefy\\LaravelSSO\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Zefy\\LaravelSSO\\SSOServiceProvider"
]
}
}
}