Skip to content

Commit a6dafbb

Browse files
authored
Merge pull request #132 from gsteel/allow-8.2
Add PHP 8.2 to the list of installable versions
2 parents 6e70671 + 0fcb33a commit a6dafbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/config/php.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const PHP_73 = '7.3';
66
export const PHP_74 = '7.4';
77
export const PHP_80 = '8.0';
88
export const PHP_81 = '8.1';
9+
export const PHP_82 = '8.2';
910

1011
export const CURRENT_STABLE = PHP_74;
1112

@@ -21,7 +22,8 @@ export const INSTALLABLE_VERSIONS = [
2122
PHP_73,
2223
PHP_74,
2324
PHP_80,
24-
PHP_81
25+
PHP_81,
26+
PHP_82
2527
] as const;
2628

2729
export type InstallablePhpVersionType = typeof INSTALLABLE_VERSIONS[number];

0 commit comments

Comments
 (0)