-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 951 Bytes
/
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" : "cloudcogsio/oauth2-openid-connect-discovery",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "Ricardo Assing",
"email" : "[email protected]",
"role" : "Developer"
}
],
"keywords" : [
"cloudcogs",
"cloudcogs.io",
"oauth2",
"openid",
"openid connect discovery",
"idp",
"identity",
"sso",
"single sign on"
],
"description" : "This library extends the 'League OAuth2 Client' library to provide OpenID Connect Discovery support for supporting providers that expose a .well-known configuration endpoint.",
"minimum-stability" : "dev",
"autoload" : {
"psr-4" : {
"Cloudcogs\\OAuth2\\Client\\" : "src/"
}
},
"require" : {
"league/oauth2-client" : "~2.6.0",
"firebase/php-jwt" : "~5.4.0",
"laminas/laminas-cache-storage-adapter-filesystem" : "~1.1.1",
"laminas/laminas-cache" : "~3.0.x-dev",
"ext-json": "*"
},
"config": {
"platform": {
"php": "7.4"
}
}
}