Skip to content

Commit

Permalink
Add support for PHP 8.3
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
  • Loading branch information
MauricioFauth committed Aug 30, 2023
1 parent 4f8998e commit 8b87f67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions laminas-ci.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@
"8.0",
"8.1",
"8.2",
"8.3",
"*",
"@latest",
"@lowest"
Expand Down
6 changes: 3 additions & 3 deletions src/config/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' ]}
Expand Down
2 changes: 2 additions & 0 deletions src/config/php.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -25,6 +26,7 @@ export const INSTALLABLE_VERSIONS = [
PHP_80,
PHP_81,
PHP_82,
PHP_83,
CONTAINER_DEFAULT_PHP_VERSION,
] as const;

Expand Down

0 comments on commit 8b87f67

Please sign in to comment.