From 1ffc99684446039d554e73317dff26c4bfa25d08 Mon Sep 17 00:00:00 2001 From: PrakharJainS3 <166108108+PrakharJainS3@users.noreply.github.com> Date: Thu, 17 Oct 2024 04:03:37 +0530 Subject: [PATCH] GL-3083: cs-wizard updated default php version to 8.3 (#1812) Co-authored-by: Dane Powell --- src/Command/CodeStudio/CodeStudioWizardCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/CodeStudio/CodeStudioWizardCommand.php b/src/Command/CodeStudio/CodeStudioWizardCommand.php index 9c4ab7e37..192781621 100644 --- a/src/Command/CodeStudio/CodeStudioWizardCommand.php +++ b/src/Command/CodeStudio/CodeStudioWizardCommand.php @@ -56,7 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int '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 = $this->io->choice('Select a PHP version', array_values($phpVersions), "8.3"); $project = array_search($project, $phpVersions, true); $phpVersion = $phpVersions[$project]; break;