From 23e0c3eb95139f0ee4d2a4dc06204e0dee3835e4 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 22 Dec 2023 01:12:29 +0000 Subject: [PATCH] Build/Test Tools: Add missing PHP versions for 6.5 and 6.4. This adds 6.4 and 6.5 to the PHP version support JSON files used to build the test matrix in the Installation Testing workflow. Also, WP 6.3 did not support PHP 8.3. Follow up to [57218]. See #58977. git-svn-id: https://develop.svn.wordpress.org/trunk@57219 602fd350-edb4-49c9-b593-d223f7449a82 --- .version-support-php.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/.version-support-php.json b/.version-support-php.json index 48bff25d2f..71e355a305 100644 --- a/.version-support-php.json +++ b/.version-support-php.json @@ -1,5 +1,5 @@ { - "6-3": [ + "6-5": [ "7.0", "7.1", "7.2", @@ -10,6 +10,27 @@ "8.2", "8.3" ], + "6-4": [ + "7.0", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", + "8.1", + "8.2", + "8.3" + ], + "6-3": [ + "7.0", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", + "8.1", + "8.2" + ], "6-2": [ "5.6", "7.0",