Skip to content

Instantly share code, notes, and snippets.

@arianmaykon
Created June 2, 2015 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arianmaykon/80598d37eb96e6c7a980 to your computer and use it in GitHub Desktop.
Save arianmaykon/80598d37eb96e6c7a980 to your computer and use it in GitHub Desktop.
Xdebug config
; Xdebug settings - from http://akrabat.com/my-xdebug-configuration/
; var_dump() displays everything, including filename and line number
xdebug.overload_var_dump = 2
xdebug.var_display_max_children = -1
xdebug.var_display_max_data = -1
xdebug.var_display_max_depth = -1
; don't supress errors
xdebug.scream = 1
; stop if there's a warning/notice
xdebug.halt_level = E_WARNING|E_NOTICE|E_USER_WARNING|E_USER_NOTICE
; remote debugging
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000
; profiling is triggered via browser extension
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment