Created
January 8, 2011 17:08
-
-
Save samir/770992 to your computer and use it in GitHub Desktop.
XDebug php.ini config
This file contains 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="/usr/local/Cellar/xdebug/2.1.0/xdebug.so" | |
[xdebug] | |
;xdebug.max_nesting_level=10 | |
xdebug.collect_params=3 | |
xdebug.show_local_vars=5 | |
xdebug.dump.GET=* | |
xdebug.dump.POST=* | |
xdebug.default_enable = On | |
xdebug.collect_includes = On | |
xdebug.collect_params = On | |
xdebug.collect_return = On | |
xdebug.collect_vars = On | |
xdebug.dump_globals = On | |
; Enable here to use @webgrind | |
xdebug.profiler_enable = 1 | |
xdebug.profiler_enable_trigger = 1 | |
xdebug.extended_info = 1 | |
xdebug.remote_enable = 0 | |
xdebug.profiler_output_dir=/tmp | |
xdebug.auto_trace=1 | |
xdebug.trace_output_dir=/tmp | |
xdebug.trace_options = 1 | |
xdebug.trace_format = 0 | |
xdebug.cli_color = 1 | |
xdebug.overload_var_dump = 1 | |
xdebug.dump.GET=* | |
xdebug.dump.SERVER=REMOTE_ADDR | |
; If this setting is 1, then Xdebug will disable the @ (shut-up) operator | |
; so that notices, warnings and errors are no longer hidden. | |
xdebug.scream = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment