Skip to content

Commit

Permalink
Add PHP 8.2 to the list of installable versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteel committed Sep 22, 2022
1 parent 6e70671 commit c5bcd41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config/php.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const PHP_73 = '7.3';
export const PHP_74 = '7.4';
export const PHP_80 = '8.0';
export const PHP_81 = '8.1';
export const PHP_82 = '8.2';

export const CURRENT_STABLE = PHP_74;

Expand All @@ -21,7 +22,8 @@ export const INSTALLABLE_VERSIONS = [
PHP_73,
PHP_74,
PHP_80,
PHP_81
PHP_81,
PHP_82
] as const;

export type InstallablePhpVersionType = typeof INSTALLABLE_VERSIONS[number];
Expand Down

0 comments on commit c5bcd41

Please sign in to comment.