diff --git a/plugins/templates/matrix.yml b/plugins/templates/matrix.yml
index aca42adc759151f4056aff14a63a30520292d9fc..5195b7ede8fab1535c445def0ed3ae3e1d40dc0c 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