From 8ded32250a8d8f4184d10a00e8b3af6c136935db Mon Sep 17 00:00:00 2001 From: George Steel Date: Thu, 8 Aug 2024 12:06:46 +0100 Subject: [PATCH] Run PHP 8.4 in CI Signed-off-by: George Steel --- .laminas-ci.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.laminas-ci.json b/.laminas-ci.json index 0967ef4..162f30b 100644 --- a/.laminas-ci.json +++ b/.laminas-ci.json @@ -1 +1,15 @@ -{} +{ + "additional_checks": [ + { + "name": "Run Tests on 8.4", + "job": { + "php": "8.4", + "dependencies": "latest", + "command": "vendor/bin/phpunit" + } + } + ], + "ignore_php_platform_requirements": { + "8.4": true + } +}