Skip to content

Commit a860e39

Browse files
committed
Require PHP 8.2 and phpBB 3.3.17 (due to security fixes)
1 parent 8b7a54d commit a860e39

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=8.1.0",
18+
"php": ">=8.2.0",
1919
"composer/installers": "~1.0"
2020
},
2121
"extra": {
2222
"display-name": "Group Warn",
2323
"soft-require": {
24-
"phpbb/phpbb": ">=3.3.16,<4.0.0@dev"
24+
"phpbb/phpbb": ">=3.3.17,<4.0.0@dev"
2525
}
2626
}
2727
}

ext.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ public function is_enableable()
4242
}
4343

4444
/**
45-
* Require phpBB 3.3.16
45+
* Require phpBB 3.3.17
4646
*
4747
* @return bool
4848
*/
4949
protected function check_phpbb_version()
5050
{
51-
return phpbb_version_compare(PHPBB_VERSION, '3.3.16', '>=');
51+
return phpbb_version_compare(PHPBB_VERSION, '3.3.17', '>=');
5252
}
5353

5454
/**
@@ -58,6 +58,6 @@ protected function check_phpbb_version()
5858
*/
5959
protected function check_php_version()
6060
{
61-
return PHP_VERSION_ID >= 80100;
61+
return PHP_VERSION_ID >= 80200;
6262
}
6363
}

0 commit comments

Comments
 (0)