Skip to content

Instantly share code, notes, and snippets.

@Deepakkothandan
Last active June 9, 2017 14:14
Show Gist options
  • Save Deepakkothandan/a8b86d997d80d5c2dff4884f208f8e26 to your computer and use it in GitHub Desktop.
Save Deepakkothandan/a8b86d997d80d5c2dff4884f208f8e26 to your computer and use it in GitHub Desktop.
xdebug config for vagrant
zend_extension=xdebug.so
;xdebug.idekey = "PHPSTORM"
;xdebug.default_enable = 1
;xdebug.remote_enable = 1
;xdebug.remote_autostart = 0
;xdebug.remote_port = 9000
;xdebug.remote_handler=dbgp
;xdebug.remote_connect_back = 1
xdebug.auto_trace="0"
xdebug.trace_output_dir="/vagrant"
xdebug.trace_output_name="trace.%c"
xdebug.trace_format="2"
xdebug.trace_options="0"
xdebug.collect_includes="1"
xdebug.collect_params="0"
xdebug.collect_return="0"
xdebug.collect_vars="0"
xdebug.default_enable="1"
xdebug.extended_info="1"
xdebug.manual_url="http://www.php.net"
xdebug.max_nesting_level="256"
xdebug.show_error_trace="0"
xdebug.show_exception_trace="0"
xdebug.show_local_vars="0"
xdebug.show_mem_delta="1"
xdebug.dump.COOKIE="NULL"
xdebug.dump.ENV="NULL"
xdebug.dump.FILES="NULL"
xdebug.dump.GET="NULL"
xdebug.dump.POST="NULL"
xdebug.dump.REQUEST="NULL"
xdebug.dump.SERVER="NULL"
xdebug.dump.SESSION="NULL"
xdebug.dump_globals="1"
xdebug.dump_once="1"
xdebug.dump_undefined="0"
xdebug.overload_var_dump="2"
xdebug.profiler_enable="0"
xdebug.profiler_output_dir="/vagrant"
xdebug.profiler_output_name="cachegrind.out.%p"
xdebug.profiler_enable_trigger="0"
xdebug.profiler_append="0"
xdebug.profiler_aggregate="0"
xdebug.remote_enable="1"
xdebug.remote_handler="dbgp"
xdebug.remote_host="10.0.2.2"
xdebug.remote_mode="req"
xdebug.remote_port="9000"
xdebug.remote_autostart="1"
xdebug.remote_log=""
xdebug.idekey=""
xdebug.var_display_max_data="512"
xdebug.var_display_max_depth="2"
xdebug.var_display_max_children="128"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment