Skip to content

Instantly share code, notes, and snippets.

@diago
Last active December 19, 2015 01:39
Show Gist options
  • Save diago/5877576 to your computer and use it in GitHub Desktop.
Save diago/5877576 to your computer and use it in GitHub Desktop.
zend_extension=/usr/lib/php/modules/xdebug.so
; General settings
xdebug.cli_color=1
xdebug.var_display_max_depth=10
; xdebug.show_exception_trace=1
xdebug.show_mem_delta=1
; xdebug.show_local_vars=1
; xdebug.collect_params=1
; xdebug.coverage_enable=1
; Dump settings
xdebug.dump.COOKIE=*
xdebug.dump.FILES=*
xdebug.dump.GET=*
xdebug.dump.POST=*
xdebug.dump.REQUEST=*
xdebug.dump.SERVER=*
xdebug.dump.SESSION=*
; Remote settings
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_log=/tmp/xdebug.log
xdebug.remote_host=localhost
; Trace settings
xdebug.trace_enable_trigger=1
; xdebug.trace_output_dir=/tmp
; xdebug.trace_output_name=trace.%c
; Profiler settings
; xdebug.profiler_enable=1
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir=/tmp
xdebug.profiler_output_name=cgrind.out.%p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment