-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
73 lines (73 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "drenso/symfony-oidc-bundle",
"description": "OpenID connect bundle for Symfony",
"keywords": [
"symfony",
"oidc",
"openid connect"
],
"type": "symfony-bundle",
"homepage": "https://gitlab.drenso.nl/intern/symfony-oidc",
"license": "Apache-2.0",
"authors": [
{
"name": "Bob van de Vijver",
"email": "[email protected]"
},
{
"name": "Tobias Feijten",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"lcobucci/jwt": "^5.0",
"phpseclib/phpseclib": "^3.0.36",
"psr/container": "^1.1 || ^2.0",
"psr/clock": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.3 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.3 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.3 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.3 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.3 || ^7.0",
"symfony/property-access": "^5.4 || ^6.3 || ^7.0",
"symfony/security-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/security-core": "^5.4 || ^6.3 || ^7.0",
"symfony/security-http": "^5.4 || ^6.3 || ^7.0",
"symfony/string": "^5.4 || ^6.3 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.68.5",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.2",
"phpstan/phpstan-deprecation-rules": "2.0.1",
"rector/rector": "2.0.7",
"symfony/cache": "^5.4 || ^6.3 || ^7.0",
"symfony/translation-contracts": "^2.0 || ^3.0"
},
"suggest": {
"symfony/cache": "When installed, IdP information will be automatically cached"
},
"autoload": {
"psr-4": {
"Drenso\\OidcBundle\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "v3.x-dev"
}
}
}