From c5bcd415bc41b3e2d4c7140293b9ac237a1c534f Mon Sep 17 00:00:00 2001 From: George Steel Date: Thu, 22 Sep 2022 14:53:35 +0100 Subject: [PATCH] Add PHP 8.2 to the list of installable versions --- src/config/php.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/php.ts b/src/config/php.ts index c7d3f5a9..e55da50e 100644 --- a/src/config/php.ts +++ b/src/config/php.ts @@ -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; @@ -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];