Skip to content

Commit

Permalink
Merge pull request #145 from iMattPro/updates
Browse files Browse the repository at this point in the history
Maintenance
  • Loading branch information
iMattPro authored Jul 5, 2024
2 parents d13a6f1 + f56e4f9 commit 5343eb5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ jobs:
db: "mysql:5.7"
- php: '8.3'
db: "mysql:5.7"
- php: '8.4'
db: "mysql:5.7"

name: PHP ${{ matrix.php }} - ${{ matrix.db_alias != '' && matrix.db_alias || matrix.db }}

Expand Down Expand Up @@ -270,6 +272,8 @@ jobs:
db: "postgres:14"
- php: '8.3'
db: "postgres:14"
- php: '8.4'
db: "postgres:14"

name: PHP ${{ matrix.php }} - ${{ matrix.db }}

Expand Down
2 changes: 1 addition & 1 deletion ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function phpbb_requirement()
*/
protected function php_requirement()
{
if (phpbb_version_compare(PHP_VERSION, '5.6.0', '<'))
if (PHP_VERSION_ID < 50600)
{
$this->errors[] = 'PHP_VERSION_ERROR';
}
Expand Down
12 changes: 8 additions & 4 deletions skeleton/.github/workflows/tests.yml.twig
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,10 @@ jobs:
db: "mysql:5.7"
- php: '8.2'
db: "mysql:5.7"
- php: '8.3'
db: "mysql:5.7"
- php: '8.3'
db: "mysql:5.7"
- php: '8.4'
db: "mysql:5.7"

name: PHP ${{ '{{' }} matrix.php }} - ${{ '{{' }} matrix.db_alias != '' && matrix.db_alias || matrix.db }}

Expand Down Expand Up @@ -237,8 +239,10 @@ jobs:
db: "postgres:14"
- php: '8.2'
db: "postgres:14"
- php: '8.3'
db: "postgres:14"
- php: '8.3'
db: "postgres:14"
- php: '8.4'
db: "postgres:14"

name: PHP ${{ '{{' }} matrix.php }} - ${{ '{{' }} matrix.db }}

Expand Down

0 comments on commit 5343eb5

Please sign in to comment.