-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 956 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": "halloverden/symfony-oidc-client-bundle",
"description": "OpenID Connect client bundle for symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Tom Roar Furunes",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^6.4|^7.1",
"halloverden/symfony-oidc-contracts": "^2.0",
"symfony/http-client": "^6.4|^7.4",
"jms/serializer-bundle": "^5.0",
"nyholm/psr7": "^1.3",
"web-token/jwt-bundle": "^3.0",
"web-token/jwt-checker": "^3.0",
"web-token/jwt-signature": "^3.0",
"web-token/jwt-signature-algorithm-rsa": "^3.0",
"spomky-labs/base64url": "^2.0"
},
"autoload": {
"psr-4": {
"HalloVerden\\Oidc\\ClientBundle\\": ""
}
}
}