-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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
{
"name": "ima/keycloak-bearer-only-adapter-bundle",
"description": "Keycloak security adapter for bearer only clients",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Leandro Vital Catarin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-client": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/security-bundle": "^6.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"IMA\\Bundle\\keycloakBearerOnlyAdapterBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"IMA\\Bundle\\keycloakBearerOnlyAdapterBundle\\Tests\\": "Tests"
}
},
"scripts": {
"post-install-cmd": [
"php ./vendor/ima/keycloak-bearer-only-adapter-bundle/scripts/generate-config.php"
],
"post-update-cmd": [
"php ./vendor/ima/keycloak-bearer-only-adapter-bundle/scripts/generate-config.php"
]
}
}