Skip to content

Commit 1cfc67c

Browse files
authored
Bump to PHP 8.2 (#414)
1 parent 9f18251 commit 1cfc67c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/all-pr-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Define a matrix of PHP/WordPress versions to test against
1818
strategy:
1919
matrix:
20-
php: [8.1, 8.2, 8.3]
20+
php: [8.2, 8.3]
2121
wordpress: ["latest"]
2222
runs-on: ubuntu-latest
2323
# Cancel any existing runs of this workflow

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Requires at least: 6.3
3939

4040
Tested up to: 6.7
4141

42-
Requires PHP: 8.1
42+
Requires PHP: 8.2
4343

4444
License: GPL v2 or later
4545

configure.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
die( 'Not supported in Windows. 🪟' );
2525
}
2626

27-
if ( version_compare( PHP_VERSION, '8.1.0', '<' ) ) {
28-
die( 'PHP 8.1.0 or greater is required.' );
27+
if ( version_compare( PHP_VERSION, '8.2.0', '<' ) ) {
28+
die( 'PHP 8.2.0 or greater is required.' );
2929
}
3030

3131
// Parse the command line arguments from $argv.

0 commit comments

Comments
 (0)