From 1e78be24bd470276a42f901eb19a2ad3bce87e2b Mon Sep 17 00:00:00 2001 From: Nicolas Clavaud Date: Thu, 22 Jan 2026 09:06:48 +0100 Subject: [PATCH 1/2] feat: Add support for Symfony 8.0 The codebase only uses Clock methods compatible with Symfony 8.0. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ea5b935..9e1bb98 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "require": { "ext-json": "*", "php": ">=8.2", - "symfony/clock": "^6.2|^7.0" + "symfony/clock": "^6.2|^7.0|^8.0" }, "require-dev": { "phpunit/phpunit": "^11.0", @@ -36,4 +36,4 @@ "bin": [ "bin/posthog" ] -} \ No newline at end of file +} From 6eb237fac9f716e39140ce4cf02aa5a9e1f2e7c0 Mon Sep 17 00:00:00 2001 From: Nicolas Clavaud Date: Thu, 22 Jan 2026 09:08:10 +0100 Subject: [PATCH 2/2] fix(test): Remove unexisting --verbose flag Remove the --verbose flag that does not exists anymore in PHPUnit 11. --- bin/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/test b/bin/test index c07cad3..9ff9c5e 100755 --- a/bin/test +++ b/bin/test @@ -4,4 +4,4 @@ source bin/helpers/_utils.sh set_source_and_root_dir -./vendor/bin/phpunit --verbose test \ No newline at end of file +./vendor/bin/phpunit test