From fdb28287e1c5b5866bc991f8a6ea171201e6d7e1 Mon Sep 17 00:00:00 2001 From: "a.dmitryuk" Date: Fri, 19 Dec 2025 09:48:27 +0700 Subject: [PATCH 1/4] Symfony 8 support --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 4547135..a5f885a 100644 --- a/composer.json +++ b/composer.json @@ -4,12 +4,12 @@ "type": "symfony-bundle", "require": { "php": "^8.1", - "symfony/asset": "^4.0|^5.0|^6.0|^7.0", - "symfony/http-foundation": "^4.0|^5.0|^6.0|^7.0", - "symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0", - "symfony/form": "^4.0|^5.0|^6.0|^7.0", - "symfony/dependency-injection": "^4.0|^5.0|^6.0|^7.0", - "symfony/routing": "^4.0|^5.0|^6.0|^7.0", + "symfony/asset": "^4.0|^5.0|^6.0|^7.0|^8.0", + "symfony/http-foundation": "^4.0|^5.0|^6.0|^7.0|^8.0", + "symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0|^8.0", + "symfony/form": "^4.0|^5.0|^6.0|^7.0|^8.0", + "symfony/dependency-injection": "^4.0|^5.0|^6.0|^7.0|^8.0", + "symfony/routing": "^4.0|^5.0|^6.0|^7.0|^8.0", "twig/twig": "^3.3" }, "scripts": { From 9979f2968acf533dbc7a7851fee5046a2f2b7e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20Perron?= Date: Fri, 19 Dec 2025 13:54:23 -0500 Subject: [PATCH 2/4] update CI to test Symfony versions 7.3, 7.4 and 8.0 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea2f925..7cb6229 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: strategy: matrix: php_version: ["8.2", "8.3", "8.4"] - symfony_version: ["6.4", "7.0", "7.1", "7.2"] + symfony_version: ["6.4", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0"] name: E2E tests runs-on: ubuntu-latest steps: From 70217aa01703d2f4c3a9c5413ec8b1890d784a52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20Perron?= Date: Fri, 19 Dec 2025 13:56:45 -0500 Subject: [PATCH 3/4] update ci workflow to use PHP versions 8.4 and 8.5 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cb6229..a587e93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: coding-standards: strategy: matrix: - php_version: ["8.1", "8.2", "8.3", "8.4"] + php_version: ["8.4", "8.5"] name: Coding standards runs-on: ubuntu-latest steps: @@ -47,7 +47,7 @@ jobs: e2e-tests: strategy: matrix: - php_version: ["8.2", "8.3", "8.4"] + php_version: ["8.4", "8.5"] symfony_version: ["6.4", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0"] name: E2E tests runs-on: ubuntu-latest From 466ea88ab32d0f9fdfe4ac530b4a2591393a488b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20Perron?= Date: Fri, 19 Dec 2025 14:16:33 -0500 Subject: [PATCH 4/4] ci: update e2e workflow to test SYmfony 6.4, 7.4 and 8.0 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a587e93..95450b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: strategy: matrix: php_version: ["8.4", "8.5"] - symfony_version: ["6.4", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0"] + symfony_version: ["6.4", "7.4", "8.0"] name: E2E tests runs-on: ubuntu-latest steps: