-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.12 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
{
"name": "ristekusdi/sso-laravel",
"description": "SSO for internal Udayana projects based on Laravel",
"license": "MIT",
"authors": [
{
"name": "Riset dan Teknologi USDI",
"email": "usdi@unud.ac.id",
"homepage": "https://usdi.unud.ac.id"
}
],
"homepage": "https://github.com/ristekusdi/sso-laravel",
"keywords": ["SSO", "authentication", "authorization"],
"require": {
"php": "^7.4|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^7.2|^7.8"
},
"autoload": {
"psr-4": {
"RistekUSDI\\SSO\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RistekUSDI\\SSO\\Laravel\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RistekUSDI\\SSO\\Laravel\\WebGuardServiceProvider"
],
"aliases": {
"IMISSUWeb": "RistekUSDI\\SSO\\Laravel\\Facades\\IMISSUWeb"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}