From 8b87f676ff49e1f8f4d5f43b94cd70e3261558c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Wed, 30 Aug 2023 19:55:36 -0300 Subject: [PATCH] Add support for PHP 8.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- laminas-ci.schema.json | 1 + src/config/app.spec.ts | 6 +++--- src/config/php.ts | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/laminas-ci.schema.json b/laminas-ci.schema.json index 45bad5e7..823f4804 100644 --- a/laminas-ci.schema.json +++ b/laminas-ci.schema.json @@ -374,6 +374,7 @@ "8.0", "8.1", "8.2", + "8.3", "*", "@latest", "@lowest" diff --git a/src/config/app.spec.ts b/src/config/app.spec.ts index a8a5ddc4..80b4c718 100644 --- a/src/config/app.spec.ts +++ b/src/config/app.spec.ts @@ -18,9 +18,9 @@ describe('config/app', () => { ${'8.1'} | ${[ '8.1' ]} ${'8.1.0'} | ${[ '8.1' ]} ${'8.1.12'} | ${[ '8.1' ]} - ${'^8.1'} | ${[ '8.1', '8.2' ]} - ${'^8.1.0'} | ${[ '8.1', '8.2' ]} - ${'^8.1.12'} | ${[ '8.1', '8.2' ]} + ${'^8.1'} | ${[ '8.1', '8.2', '8.3' ]} + ${'^8.1.0'} | ${[ '8.1', '8.2', '8.3' ]} + ${'^8.1.12'} | ${[ '8.1', '8.2', '8.3' ]} ${'~8.1'} | ${[ '8.1' ]} ${'~8.1.0'} | ${[ '8.1' ]} ${'~8.1.12'} | ${[ '8.1' ]} diff --git a/src/config/php.ts b/src/config/php.ts index e75cfc37..04882e41 100644 --- a/src/config/php.ts +++ b/src/config/php.ts @@ -7,6 +7,7 @@ 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 PHP_83 = '8.3'; export const CURRENT_STABLE = PHP_80; export const CONTAINER_DEFAULT_PHP_VERSION = '@default'; @@ -25,6 +26,7 @@ export const INSTALLABLE_VERSIONS = [ PHP_80, PHP_81, PHP_82, + PHP_83, CONTAINER_DEFAULT_PHP_VERSION, ] as const;