Skip to content

Commit

Permalink
GL-3083: cs-wizard updated default php version to 8.3 (#1812)
Browse files Browse the repository at this point in the history
Co-authored-by: Dane Powell <[email protected]>
  • Loading branch information
PrakharJainS3 and danepowell authored Oct 16, 2024
1 parent ff89a43 commit 1ffc996
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 1ffc996

Please sign in to comment.