-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.08 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
74
75
76
{
"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": "[email protected]"
},
{
"name": "Jurian Janssen",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-gmp": "*",
"knpuniversity/oauth2-client-bundle": "^2.18",
"nyholm/psr7": "^1.2",
"php-http/cache-plugin": "^1.7",
"php-http/curl-client": "^2.1",
"php-http/httplug-bundle": "^1.17",
"stevenmaguire/oauth2-keycloak": "^5.1",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/framework-bundle": "^5.4 || ^6.4",
"symfony/security-bundle": "^5.4 || ^6.4",
"symfony/security-core": "^5.4 || ^6.4",
"symfony/security-http": "^5.4 || ^6.4",
"symfony/validator": "^5.4 || ^6.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",
"roave/security-advisories": "dev-latest"
},
"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
}
}