From d96961d2f99155ea8299fca908b3d62b70e8b3b7 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 14 Jun 2023 14:38:39 +0200 Subject: [PATCH] Update php.php to 8.2 --- recipe/provision/php.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/provision/php.php b/recipe/provision/php.php index d107e284a..175931c79 100644 --- a/recipe/provision/php.php +++ b/recipe/provision/php.php @@ -2,7 +2,7 @@ namespace Deployer; set('php_version', function () { - return ask(' What PHP version to install? ', '8.1', ['5.6', '7.4', '8.0', '8.1']); + return ask(' What PHP version to install? ', '8.2', ['5.6', '7.4', '8.0', '8.1', '8.2']); }); desc('Installs PHP packages');