2.9 KiB
Using Xdebug
The default development image is shipped with Xdebug, a popular debugger and profiler for PHP.
Because it has a significant performance overhead, the step-by-step debugger is disabled by default.
It can be enabled by setting the XDEBUG_MODE environment variable to debug.
On Linux and Mac:
XDEBUG_MODE=debug docker compose up -d
On Windows:
set XDEBUG_MODE=debug&& docker compose up -d&set XDEBUG_MODE=
Debugging with Xdebug and PHPStorm
First, create a PHP debug remote server configuration:
- In the
Settings/Preferencesdialog, go toPHP | Servers - Create a new server:
- Name:
symfony(or whatever you want to use for the variablePHP_IDE_CONFIG) - Host:
localhost(or the one defined using theSERVER_NAMEenvironment variable) - Port:
443 - Debugger:
Xdebug - Check
Use path mappings - Absolute path on the server:
/app
- Name:
You can now use the debugger!
-
In PHPStorm, open the
Runmenu and click onStart Listening for PHP Debug Connections -
Add the
XDEBUG_SESSION=PHPSTORMquery parameter to the URL of the page you want to debug, or use other available triggersAlternatively, you can use the Xdebug extension for your preferred web browser.
-
On command line, we might need to tell PHPStorm which path mapping configuration should be used, set the value of the PHP_IDE_CONFIG environment variable to
serverName=symfony, wheresymfonyis the name of the debug server configured higher.Example:
XDEBUG_SESSION=1 PHP_IDE_CONFIG="serverName=symfony" php bin/console ...
Debugging with Xdebug and VScode
-
Install necessery PHP extension for VScode.
-
Add debug configuration into your
.vscode\launch.jsonfile.Example:
{ "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9003, "pathMappings": { "/app": "${workspaceFolder}" } } -
Use Run and Debug options and run
Listen for Xdebugcommand to listen for upcomming connections with the Xdebug extension installed and active.
Troubleshooting
Inspect the installation with the following command. The Xdebug version should be displayed.
$ docker compose exec php php --version
PHP ...
with Xdebug v3.x.x ...