From d72bae30bbdace4039848ddeca02cb2c5da51cc2 Mon Sep 17 00:00:00 2001 From: James Castro Date: Sat, 6 Jun 2026 00:55:04 +0100 Subject: [PATCH] Add support for symfony/serializer v8 The symfony/serializer package is declared as a dependency but is not directly used in the library's source code. Adding ^8.0 to the version constraint allows this library to be installed alongside Symfony 8.x projects without conflicts. Fixes #811 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 05693843c..323a6d1c9 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ "guzzlehttp/psr7": "^1.7 || ^2.0", "monolog/monolog": "^2.2.0 || ^3.0", "phpdocumentor/reflection-docblock": "^3.0.3 || ^4.0 || ^5.0", - "symfony/serializer": "^3.0.3 || ^4.4.0 || ^5.0.0 || ^6.0.0 || ^7.0", + "symfony/serializer": "^3.0.3 || ^4.4.0 || ^5.0.0 || ^6.0.0 || ^7.0 || ^8.0", "ext-json": "*" }, "require-dev": {