Skip to content

Commit 8b87f67

Browse files
committed
Add support for PHP 8.3
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent 4f8998e commit 8b87f67

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

laminas-ci.schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,7 @@
374374
"8.0",
375375
"8.1",
376376
"8.2",
377+
"8.3",
377378
"*",
378379
"@latest",
379380
"@lowest"

src/config/app.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ describe('config/app', () => {
1818
${'8.1'} | ${[ '8.1' ]}
1919
${'8.1.0'} | ${[ '8.1' ]}
2020
${'8.1.12'} | ${[ '8.1' ]}
21-
${'^8.1'} | ${[ '8.1', '8.2' ]}
22-
${'^8.1.0'} | ${[ '8.1', '8.2' ]}
23-
${'^8.1.12'} | ${[ '8.1', '8.2' ]}
21+
${'^8.1'} | ${[ '8.1', '8.2', '8.3' ]}
22+
${'^8.1.0'} | ${[ '8.1', '8.2', '8.3' ]}
23+
${'^8.1.12'} | ${[ '8.1', '8.2', '8.3' ]}
2424
${'~8.1'} | ${[ '8.1' ]}
2525
${'~8.1.0'} | ${[ '8.1' ]}
2626
${'~8.1.12'} | ${[ '8.1' ]}

src/config/php.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const PHP_74 = '7.4';
77
export const PHP_80 = '8.0';
88
export const PHP_81 = '8.1';
99
export const PHP_82 = '8.2';
10+
export const PHP_83 = '8.3';
1011

1112
export const CURRENT_STABLE = PHP_80;
1213
export const CONTAINER_DEFAULT_PHP_VERSION = '@default';
@@ -25,6 +26,7 @@ export const INSTALLABLE_VERSIONS = [
2526
PHP_80,
2627
PHP_81,
2728
PHP_82,
29+
PHP_83,
2830
CONTAINER_DEFAULT_PHP_VERSION,
2931
] as const;
3032

0 commit comments

Comments
 (0)