-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.16 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.16 KB
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
74
75
76
77
78
79
80
{
"name": "t3g/symfony-keycloak-bundle",
"type": "symfony-bundle",
"description": "Use the TYPO3 Keycloak server for authentication",
"license": "MIT",
"homepage": "https://www.typo3.com",
"authors": [
{
"name": "Frank Naegler",
"email": "frank.naegler@typo3.com"
},
{
"name": "Jurian Janssen",
"email": "jurian.janssen@typo3.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-json": "*",
"knpuniversity/oauth2-client-bundle": "^2.18",
"nyholm/psr7": "^1.2",
"php-http/cache-plugin": "^2.0",
"php-http/curl-client": "^2.4",
"php-http/httplug-bundle": "^2.3",
"stevenmaguire/oauth2-keycloak": "^6.1",
"symfony/cache": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/framework-bundle": "^6.4 || ^7.4",
"symfony/security-bundle": "^6.4 || ^7.4",
"symfony/security-core": "^6.4 || ^7.4",
"symfony/security-http": "^6.4 || ^7.4",
"symfony/validator": "^6.4 || ^7.4"
},
"autoload": {
"psr-4": {
"T3G\\Bundle\\Keycloak\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Bundle\\Keycloak\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^3.0 || ^4.0",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"t3g:cgl": [
"php-cs-fixer fix -v --dry-run"
],
"t3g:cgl:fix": [
"php-cs-fixer fix"
],
"t3g:test:php:lint": [
"phplint"
],
"t3g:test:php": [
"./vendor/bin/phpunit -c build/phpunit.xml.dist"
],
"t3g:test": [
"@t3g:cgl",
"@t3g:test:php",
"@t3g:test:php:lint"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true,
"audit": {
"ignore": {
"CVE-2025-45769": "disputed"
}
}
}
}