Created
September 3, 2020 15:13
-
-
Save pthiers/3b269cacaaebfc6ac3d878bf737cd8a1 to your computer and use it in GitHub Desktop.
xdebug configuration for docker in mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zend_extension=xdebug.so | |
xdebug.idekey = "PHPSTORM" | |
xdebug.remote_enable=on | |
xdebug.remote_handler=dbgp | |
xdebug.remote_connect_back=0 | |
xdebug.remote_host=host.docker.internal | |
xdebug.remote_port=9005 | |
xdebug.remote_autostart=1 | |
xdebug.default_enable=0 | |
xdebug.profiler_aggregate=0 | |
xdebug.profiler_append=0 | |
xdebug.profiler_enable=0 | |
xdebug.profiler_enable_trigger=1 | |
xdebug.profiler_output_dir=/tmp/shared/ | |
xdebug.profiler_output_name=cachegrind.out-%p-%s-%R-%t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment