Skip to content

Commit b84d857

Browse files
committed
The master branch is now for Xdebug 3.6, targetting PHP 8.6
1 parent 15a2d55 commit b84d857

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Xdebug-1.03",
55
"description": "Xdebug is a debugging and productivity extension for PHP",
66
"require": {
7-
"php": ">=8.0,<8.6"
7+
"php": ">=8.0,<8.7"
88
},
99
"php-ext": {
1010
"priority": 90,

config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ if test "$PHP_XDEBUG" != "no"; then
1717
PHP_XDEBUG_FOUND_VERSION=`${PHP_CONFIG} --version`
1818
PHP_XDEBUG_FOUND_VERNUM=`${PHP_CONFIG} --vernum`
1919
if test "$PHP_XDEBUG_FOUND_VERNUM" -lt "80000"; then
20-
AC_MSG_ERROR([not supported. Need a PHP version >= 8.0.0 and < 8.6.0 (found $PHP_XDEBUG_FOUND_VERSION)])
20+
AC_MSG_ERROR([not supported. Need a PHP version >= 8.0.0 and < 8.7.0 (found $PHP_XDEBUG_FOUND_VERSION)])
2121
else
2222
if test "$PHP_XDEBUG_FOUND_VERNUM" -ge "80600"; then
23-
AC_MSG_ERROR([not supported. Need a PHP version >= 8.0.0 and < 8.6.0 (found $PHP_XDEBUG_FOUND_VERSION)])
23+
AC_MSG_ERROR([not supported. Need a PHP version >= 8.0.0 and < 8.7.0 (found $PHP_XDEBUG_FOUND_VERSION)])
2424
else
2525
AC_MSG_RESULT([supported ($PHP_XDEBUG_FOUND_VERSION)])
2626
fi

config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ if (PHP_XDEBUG != 'no') {
2020

2121
var XDEBUG_PHP_VERSION = 10000 * PHP_VERSION + 100 * PHP_MINOR_VERSION + 1 * PHP_RELEASE_VERSION;
2222
if (XDEBUG_PHP_VERSION < 80000) {
23-
ERROR("not supported. Need a PHP version >= 8.0.0 and < 8.6.0 (found " + XDEBUG_PHP_VERSION + ")");
23+
ERROR("not supported. Need a PHP version >= 8.0.0 and < 8.7.0 (found " + XDEBUG_PHP_VERSION + ")");
2424
} else if (XDEBUG_PHP_VERSION >= 80600) {
25-
ERROR("not supported. Need a PHP version >= 8.0.0 and < 8.6.0 (found " + XDEBUG_PHP_VERSION + ")");
25+
ERROR("not supported. Need a PHP version >= 8.0.0 and < 8.7.0 (found " + XDEBUG_PHP_VERSION + ")");
2626
} else {
2727
MESSAGE("supported (" + XDEBUG_PHP_VERSION + ")");
2828
}

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Thu, Dec 04, 2025 - Xdebug 3.5.0
234234
<required>
235235
<php>
236236
<min>8.0.0</min>
237-
<max>8.5.99</max>
237+
<max>8.6.99</max>
238238
</php>
239239
<pearinstaller>
240240
<min>1.9.1</min>

php_xdebug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define PHP_XDEBUG_H
1919

2020
#define XDEBUG_NAME "Xdebug"
21-
#define XDEBUG_VERSION "3.5.1-dev"
21+
#define XDEBUG_VERSION "3.6.0-dev"
2222
#define XDEBUG_AUTHOR "Derick Rethans"
2323
#define XDEBUG_COPYRIGHT "Copyright (c) 2002-2025 by Derick Rethans"
2424
#define XDEBUG_COPYRIGHT_SHORT "Copyright (c) 2002-2025"

template.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
1414
# define THANKS_GUYS ""
1515
#endif
1616

17-
#define VERSIONDESC 3,5,1,0
18-
#define VERSIONSTR "3.5.1-dev"
17+
#define VERSIONDESC 3,6,0,0
18+
#define VERSIONSTR "3.6.0-dev"
1919

2020
//Version
2121
VS_VERSION_INFO VERSIONINFO

0 commit comments

Comments
 (0)