The ini setting xdebug.overload_var_dump has been removed in Xdebug 3. The var_dump() method is now always overloaded if the Xdebug runs in develop mode. I've adjusted our detection logic accordingly.
Since our minimum PHP version is 8.0 now, we can stop caring about Xdebug 2 which has never received a PHP 8 compatible release.
The ini setting
xdebug.overload_var_dump
has been removed in Xdebug 3. Thevar_dump()
method is now always overloaded if the Xdebug runs in develop mode. I've adjusted our detection logic accordingly.Since our minimum PHP version is 8.0 now, we can stop caring about Xdebug 2 which has never received a PHP 8 compatible release.