From f34983f05623d61a1b91cdf5dc60eae33863d8ed Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 5 Feb 2026 00:41:50 +1300 Subject: [PATCH] fix: update composer image to 2.x for PHP 8.3+ compatibility PHPUnit 12 requires PHP 8.3+ and uses PHP enums like CodeCoverageInitializationStatus. The old composer:2.0 image used PHP 8.0.6 which doesn't support enums, causing autoloader issues. Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e848b6f0b5..4a34248e9c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM composer:2.0 AS composer +FROM composer:2 AS composer ARG TESTING=false ENV TESTING=$TESTING