From 530a3ea2e3a708f6af49ea906b99ba8bb84a24a2 Mon Sep 17 00:00:00 2001 From: Alexej Leinweber Date: Tue, 13 Jan 2026 14:12:50 +0100 Subject: [PATCH 1/3] chore: Add php 8.5 to ci testing matrix --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9962d78..6199024 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,7 @@ jobs: php-version: - "8.3" - "8.4" + - "8.5" operating-system: ["ubuntu-latest"] steps: From e8bc0c1e2dc595965189fd15bb808c0822370d31 Mon Sep 17 00:00:00 2001 From: Alexej Leinweber Date: Tue, 13 Jan 2026 14:14:01 +0100 Subject: [PATCH 2/3] fix: Bump symfony deps --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index af70750..aefee21 100644 --- a/composer.json +++ b/composer.json @@ -23,13 +23,13 @@ "phpstan/phpstan": "^2.1.1", "phpunit/phpunit": "^12.0", "predis/predis": "^2.2", - "symfony/clock": "^6.4|^7.0", - "symfony/config": "^6.4|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/routing": "^6.4|^7.0", - "symfony/security-core": "^6.4|^7.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/security-core": "^7.4|^8.0", "phpstan/phpstan-phpunit": "^2.0", "phpstan/phpstan-symfony": "^2.0" }, From fd50818000f9304225bb1787f3cae7f0a4b4a4f7 Mon Sep 17 00:00:00 2001 From: Alexej Leinweber Date: Tue, 13 Jan 2026 14:18:03 +0100 Subject: [PATCH 3/3] chore: Fix phpstan issue --- phpstan.neon.dist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 8868394..afe37c2 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -7,6 +7,8 @@ parameters: excludePaths: # Declaring types for static function parameters is not possible - src/Bundle/DependencyInjection/Configuration.php + ignoreErrors: + - '#Property Brainbits\\Blocking\\Storage\\InMemoryStorage::\$blocks#' includes: - vendor/brainbits/phpstan-rules/rules.neon - vendor/phpstan/phpstan-phpunit/rules.neon