Skip to content

Commit

Permalink
Merge pull request #132 from gsteel/allow-8.2
Browse files Browse the repository at this point in the history
Add PHP 8.2 to the list of installable versions
  • Loading branch information
Ocramius authored Sep 22, 2022
2 parents 6e70671 + 0fcb33a commit a6dafbb
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 a6dafbb

Please sign in to comment.