Skip to content

Commit ed8a77c

Browse files
committed
Add support for PHP 8.4 and set current stable to 8.1
Signed-off-by: George Steel <[email protected]>
1 parent 0a9b580 commit ed8a77c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

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', '8.3' ]}
22-
${'^8.1.0'} | ${[ '8.1', '8.2', '8.3' ]}
23-
${'^8.1.12'} | ${[ '8.1', '8.2', '8.3' ]}
21+
${'^8.1'} | ${[ '8.1', '8.2', '8.3', '8.4' ]}
22+
${'^8.1.0'} | ${[ '8.1', '8.2', '8.3', '8.4' ]}
23+
${'^8.1.12'} | ${[ '8.1', '8.2', '8.3', '8.4' ]}
2424
${'~8.1'} | ${[ '8.1' ]}
2525
${'~8.1.0'} | ${[ '8.1' ]}
2626
${'~8.1.12'} | ${[ '8.1' ]}

src/config/php.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ export const PHP_80 = '8.0';
88
export const PHP_81 = '8.1';
99
export const PHP_82 = '8.2';
1010
export const PHP_83 = '8.3';
11+
export const PHP_84 = '8.4';
1112

12-
export const CURRENT_STABLE = PHP_80;
13+
export const CURRENT_STABLE = PHP_81;
1314
export const CONTAINER_DEFAULT_PHP_VERSION = '@default';
1415

1516
/**
@@ -27,6 +28,7 @@ export const INSTALLABLE_VERSIONS = [
2728
PHP_81,
2829
PHP_82,
2930
PHP_83,
31+
PHP_84,
3032
CONTAINER_DEFAULT_PHP_VERSION,
3133
] as const;
3234

0 commit comments

Comments
 (0)