File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ describe('config/app', () => {
18
18
${ '8.1' } | ${ [ '8.1' ] }
19
19
${ '8.1.0' } | ${ [ '8.1' ] }
20
20
${ '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' ] }
24
24
${ '~8.1' } | ${ [ '8.1' ] }
25
25
${ '~8.1.0' } | ${ [ '8.1' ] }
26
26
${ '~8.1.12' } | ${ [ '8.1' ] }
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ export const PHP_80 = '8.0';
8
8
export const PHP_81 = '8.1' ;
9
9
export const PHP_82 = '8.2' ;
10
10
export const PHP_83 = '8.3' ;
11
+ export const PHP_84 = '8.4' ;
11
12
12
- export const CURRENT_STABLE = PHP_80 ;
13
+ export const CURRENT_STABLE = PHP_81 ;
13
14
export const CONTAINER_DEFAULT_PHP_VERSION = '@default' ;
14
15
15
16
/**
@@ -27,6 +28,7 @@ export const INSTALLABLE_VERSIONS = [
27
28
PHP_81 ,
28
29
PHP_82 ,
29
30
PHP_83 ,
31
+ PHP_84 ,
30
32
CONTAINER_DEFAULT_PHP_VERSION ,
31
33
] as const ;
32
34
You can’t perform that action at this time.
0 commit comments