Skip to content

Instantly share code, notes, and snippets.

@pthiers
Created September 3, 2020 15:13
Show Gist options
  • Save pthiers/3b269cacaaebfc6ac3d878bf737cd8a1 to your computer and use it in GitHub Desktop.
Save pthiers/3b269cacaaebfc6ac3d878bf737cd8a1 to your computer and use it in GitHub Desktop.
xdebug configuration for docker in mac
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