Skip to content

Commit

Permalink
GL-3083: cs-wizard updated default php version to 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
PrakharJainS3 committed Oct 14, 2024
1 parent ed04b5e commit 373ca79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CodeStudio/CodeStudioWizardCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 373ca79

Please sign in to comment.