Skip to content

Commit d8814bb

Browse files
committed
compatibility with 8.4
1 parent 013605e commit d8814bb

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ if test "$PHP_ZIP" != "no"; then
2727
elif test $PHP_VERSION -lt 80100; then
2828
AC_MSG_RESULT(8.0)
2929
subdir=php8
30-
elif test $PHP_VERSION -lt 80400; then
31-
AC_MSG_RESULT(8.1/8.2/8.3)
30+
elif test $PHP_VERSION -lt 80500; then
31+
AC_MSG_RESULT(8.1/8.2/8.3/8.4)
3232
subdir=php81
3333
else
3434
AC_MSG_ERROR(PHP version $PHP_VERSION is not supported yet)

config.w32

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ if (PHP_ZIP != "no") {
3434
configure_module_dirname = configure_module_dirname + "\\php81";
3535
} else if (PHP_VERSION == 8 && PHP_MINOR_VERSION == 3) {
3636
configure_module_dirname = configure_module_dirname + "\\php81";
37+
} else if (PHP_VERSION == 8 && PHP_MINOR_VERSION == 4) {
38+
configure_module_dirname = configure_module_dirname + "\\php81";
3739
} else {
3840
ERROR("PHP " + PHP_VERSION + "." + PHP_MINOR_VERSION + " not supported");
3941
}

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</stability>
2828
<license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
2929
<notes>
30-
-
30+
- compatibility with 8.4
3131
</notes>
3232
<contents>
3333
<dir name="/">
@@ -217,7 +217,7 @@
217217
<required>
218218
<php>
219219
<min>5.4.0</min>
220-
<max>8.3.99</max>
220+
<max>8.4.99</max>
221221
</php>
222222
<pearinstaller>
223223
<min>1.7.0</min>

0 commit comments

Comments
 (0)