From 1c8febf8ea5d4c8d969ec624a10d6c1952f507ca Mon Sep 17 00:00:00 2001 From: Shubham Bansal <62992590+shubham-bansal96@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:34:10 +0530 Subject: [PATCH] PHP 8.3 support for CodeStudio (#1737) Co-authored-by: acquia-service-acc-user --- src/Command/CodeStudio/CodeStudioWizardCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Command/CodeStudio/CodeStudioWizardCommand.php b/src/Command/CodeStudio/CodeStudioWizardCommand.php index fae3bca9a..8d52052fb 100644 --- a/src/Command/CodeStudio/CodeStudioWizardCommand.php +++ b/src/Command/CodeStudio/CodeStudioWizardCommand.php @@ -52,6 +52,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $phpVersions = [ 'PHP_version_8.1' => "8.1", 'PHP_version_8.2' => "8.2", + 'PHP_version_8.3' => "8.3", ]; $project = $this->io->choice('Select a PHP version', array_values($phpVersions), "8.1"); $project = array_search($project, $phpVersions, TRUE);