From 78ef556e7bc9297312e532cd636139f2dbfb5cca Mon Sep 17 00:00:00 2001 From: Tasuku Yamashita Date: Wed, 28 Jan 2026 12:16:16 +0900 Subject: [PATCH] ci: use Composer 2.2 for PHP 7.2 matrix entry PHP 7.2 CI was failing because Composer 2.x (latest ~2.8) cannot resolve PHPUnit 6.x dependency correctly, while Composer 2.2 (LTS) can. This aligns PHP 7.2 with PHP 7.0 and 7.1 which already use Composer 2.2. Co-Authored-By: Claude Opus 4.5 --- .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 71f7e17..6a46ea3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: composer: 2.2 - php: 7.2 phpunit: 6 - composer: 2 + composer: 2.2 steps: - uses: actions/checkout@v4