From 02e07335776beeb34e17cbd3ff2c11e4033a62a2 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 18 Dec 2023 18:54:28 +0000 Subject: [PATCH] Build/Test Tools: Change the default value of `LOCAL_PHP`. This changes the default value for `LOCAL_PHP` in the 6.4 branch from `latest` to `8.3-fpm` to reflect the highest version of PHP this branch will support (with beta support). After this change, future updates to the `latest` container built and published by the `wpdev-docker-images` repository will not cause failures in this branch. While there are currently no failures in the 6.4 branch, the `latest` container was recently changed from using PHP 7.4 to 8.2 and caused failures in the 5.8-6.3 branches. Pinning a PHP version to this branch now will prevent that same scenario in the future. Going forward, this should be done at the time of branching. Older branches already have specific PHP versions defined. See #60095. git-svn-id: https://develop.svn.wordpress.org/branches/6.4@57198 602fd350-edb4-49c9-b593-d223f7449a82 --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index d393c9b324..00e60b5d11 100644 --- a/.env +++ b/.env @@ -15,7 +15,7 @@ LOCAL_PORT=8889 LOCAL_DIR=src # The PHP version to use. Valid options are 'latest', and '{version}-fpm'. -LOCAL_PHP=latest +LOCAL_PHP=8.3-fpm # Whether or not to enable Xdebug. LOCAL_PHP_XDEBUG=false