From dcf38030f89aa91ef09ce7edab1c2739ac2a0bf9 Mon Sep 17 00:00:00 2001 From: Patrick Landolt Date: Mon, 9 Mar 2026 16:55:38 +0100 Subject: [PATCH] feat: add symfony/http-client ^8.0 support --- src/Implementations/Psr18/Clients.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Implementations/Psr18/Clients.php b/src/Implementations/Psr18/Clients.php index 3946fd1..fde0de9 100644 --- a/src/Implementations/Psr18/Clients.php +++ b/src/Implementations/Psr18/Clients.php @@ -75,7 +75,7 @@ public static function candidates(): CandidatesCollection self::$candidates->add(CandidateEntity::create( package: 'symfony/http-client', - version: '^4.3 | ^5.0 | ^6.0 | ^7.0', + version: '^4.3 | ^5.0 | ^6.0 | ^7.0 | ^8.0', builder: static fn (string $class = '\Symfony\Component\HttpClient\Psr18Client'): object => new $class( responseFactory: Discover::httpResponseFactory(), streamFactory: Discover::httpStreamFactory(),