-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
With latest version of XDebug you'll find some properties have been updated/renamed.
This has meant (until there is a newer version of dephpugger that supports XDebug 3) I had to manually update vendor/tacnoman/dephpugger/src/Dephpug/Console/CliCommand.php
with the renamed fields (see https://xdebug.org/docs/errors#CFG-C-CHANGED and the linked upgrade guide for details).
The summary of those changes being:
-dxdebug.remote_enable=1
->-dxdebug.mode=debug
-dxdebug.remote_mode=req
->-dxdebug.start_with_request=trigger
-dxdebug.remote_port
->-dxdebug.client_port
-dxdebug.remote_host
->-dxdebug.client_host
- $command = "{$configVar} {$phpPath} -dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port={$debuggerPort} -dxdebug.remote_host=127.0.0.1 {$phpFile}";
+ $command = "{$configVar} {$phpPath} -dxdebug.mode=debug -dxdebug.start_with_request=trigger -dxdebug.client_port={$debuggerPort} -dxdebug.client_host=127.0.0.1 {$phpFile}";
mrkskwsnck
Metadata
Metadata
Assignees
Labels
No labels