forked from maicol07/oidc-client-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 878 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
{
"name": "bouffekai/oidc-client-php",
"description": "OpenID Connect client",
"keywords": ["OpenID Connect", "OIDC", "client", "OAuth 2", "SSO", "RFC6749", "RFC7009", "RFC7636", "RFC7662"],
"license": "Apache-2.0",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7",
"illuminate/collections": "^9",
"illuminate/http": "^9",
"illuminate/support": "^9",
"lcobucci/clock": "^2",
"lcobucci/jwt": "~4.1",
"cse/helpers-session": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.2"
},
"archive" : {
"exclude" : [
".*"
]
},
"autoload" : {
"psr-4": {
"Maicol07\\OpenIDConnect\\": "src/"
}
}
}