2 Commits

Author SHA1 Message Date
338850c5ce fix deprecation of eraseCredentials function return type 2026-01-04 21:05:16 +01:00
Richard Toth
ae1a996ace update composer.json (guzzle update) 2025-12-19 13:40:59 +01:00
2 changed files with 8 additions and 6 deletions

View File

@@ -258,8 +258,10 @@ class KeycloakBearerUser implements UserInterface
*
* This is important if, at any given point, sensitive information like
* the plain-text password is stored on this object.
*
* @return void
*/
public function eraseCredentials()
public function eraseCredentials(): void
{
// TODO: Implement eraseCredentials() method.
}

View File

@@ -1,22 +1,22 @@
{
"name": "abel/keycloak-bearer-only-adapter-bundle",
"name": "tothbt/keycloak-adapter-bundle",
"description": "Keycloak security adapter for bearer only clients",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Abdellah Elmakhroubi",
"email": "abdellah.elmakhroubi@gmail.com"
"name": "Richard Toth",
"email": "info@totbt.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2.5",
"php": ">=8.3",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/security-bundle": "^6.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/guzzle": "^7",
"ext-json": "*"
},
"autoload": {