From fb6d4e3bd058d1f562a5bff85c9c04d0aef2bd56 Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Thu, 15 May 2025 19:13:22 -0700
Subject: [PATCH] Add PHP 8.2 and 8.3

---
 plugins/templates/matrix.yml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/plugins/templates/matrix.yml b/plugins/templates/matrix.yml
index aca42ad..5195b7e 100644
--- a/plugins/templates/matrix.yml
+++ b/plugins/templates/matrix.yml
@@ -66,6 +66,26 @@ PHPunit:PHP8.1:MySQL:
     - phpunit
   allow_failure: true
 
+PHPunit:PHP8.2:MySQL:
+  stage: test
+  image: containers.ethitter.com:443/docker/images/php:8.2
+  services:
+    - mysql:5.6
+  script:
+    - find . -type "f" -iname "*.php" | xargs -L "1" php -l
+    - phpunit
+  allow_failure: true
+
+PHPunit:PHP8.3:MySQL:
+  stage: test
+  image: containers.ethitter.com:443/docker/images/php:8.3
+  services:
+    - mysql:5.6
+  script:
+    - find . -type "f" -iname "*.php" | xargs -L "1" php -l
+    - phpunit
+  allow_failure: true
+
 PHPCS:
   stage: test
   image: containers.ethitter.com:443/docker/images/php:8.2
-- 
GitLab