From 587e91d8e2a0a268a5a859d4af5b8f89da2a43a0 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 24 Apr 2026 17:29:54 +0200 Subject: [PATCH 1/4] Allow SF 8 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 57a68cf..caefe94 100644 --- a/composer.json +++ b/composer.json @@ -13,9 +13,9 @@ "php": ">=8.0", "ext-json": "*", "guzzlehttp/guzzle": "^7.0", - "symfony/config": "^5.4 || ^6.0 || ^7.0", - "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", - "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0" + "symfony/config": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0 || ^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "3.60.*", From 54829da27610740b2bcbe7d0482e3f35ffac5124 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 24 Apr 2026 17:32:18 +0200 Subject: [PATCH 2/4] Bump GA --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 1172921..bc00ac8 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -17,14 +17,14 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: 1 - uses: shivammathur/setup-php@v2 with: - php-version: 8.3 + php-version: 8.5 tools: composer:v2 ini-file: development From 2ed7cc79ddcd60606b59040886fdd279e4571490 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 24 Apr 2026 17:34:08 +0200 Subject: [PATCH 3/4] Bump phpstan --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index caefe94..01d773d 100644 --- a/composer.json +++ b/composer.json @@ -19,9 +19,9 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "3.60.*", - "phpstan/phpstan": "1.11.*", - "phpstan/phpstan-strict-rules": "1.6.*", - "phpstan/phpstan-symfony": "1.4.*" + "phpstan/phpstan": "2.1.*", + "phpstan/phpstan-strict-rules": "2.0.*", + "phpstan/phpstan-symfony": "2.0.*" }, "autoload": { "psr-4": { From 52e9c6360a030b924e6b3130cca21772bbc56bd4 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 24 Apr 2026 17:36:42 +0200 Subject: [PATCH 4/4] Bump php cs fixer --- .php-cs-fixer.dist.php | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 97c8695..fd51267 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -15,6 +15,7 @@ '@Symfony:risky' => true, // Override Symfony config + 'declare_strict_types' => false, 'method_argument_space' => [ 'after_heredoc' => true, 'on_multiline' => 'ensure_fully_multiline', diff --git a/composer.json b/composer.json index 01d773d..7ee5749 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "3.60.*", + "friendsofphp/php-cs-fixer": "3.95.*", "phpstan/phpstan": "2.1.*", "phpstan/phpstan-strict-rules": "2.0.*", "phpstan/phpstan-symfony": "2.0.*"