File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed
skeleton/.github/workflows Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,8 @@ jobs:
127127 db : " mysql:5.7"
128128 - php : ' 8.3'
129129 db : " mysql:5.7"
130+ - php : ' 8.4'
131+ db : " mysql:5.7"
130132
131133 name : PHP ${{ matrix.php }} - ${{ matrix.db_alias != '' && matrix.db_alias || matrix.db }}
132134
@@ -270,6 +272,8 @@ jobs:
270272 db : " postgres:14"
271273 - php : ' 8.3'
272274 db : " postgres:14"
275+ - php : ' 8.4'
276+ db : " postgres:14"
273277
274278 name : PHP ${{ matrix.php }} - ${{ matrix.db }}
275279
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ protected function phpbb_requirement()
6464 */
6565 protected function php_requirement ()
6666 {
67- if (phpbb_version_compare ( PHP_VERSION , ' 5.6.0 ' , ' < ' ) )
67+ if (PHP_VERSION_ID < 50600 )
6868 {
6969 $ this ->errors [] = 'PHP_VERSION_ERROR ' ;
7070 }
Original file line number Diff line number Diff line change @@ -125,8 +125,10 @@ jobs:
125125 db: "mysql:5.7"
126126 - php: '8.2'
127127 db: "mysql:5.7"
128- - php: '8.3'
129- db: "mysql:5.7"
128+ - php: '8.3'
129+ db: "mysql:5.7"
130+ - php: '8.4'
131+ db: "mysql:5.7"
130132
131133 name: PHP ${{ ' {{' }} matrix.php }} - ${{ ' {{' }} matrix.db_alias != '' && matrix.db_alias || matrix.db }}
132134
@@ -237,8 +239,10 @@ jobs:
237239 db: "postgres:14"
238240 - php: '8.2'
239241 db: "postgres:14"
240- - php: '8.3'
241- db: "postgres:14"
242+ - php: '8.3'
243+ db: "postgres:14"
244+ - php: '8.4'
245+ db: "postgres:14"
242246
243247 name: PHP ${{ ' {{' }} matrix.php }} - ${{ ' {{' }} matrix.db }}
244248
You can’t perform that action at this time.
0 commit comments