Last active
June 19, 2017 13:55
-
-
Save hectorh30/7af9e89c81f819858445 to your computer and use it in GitHub Desktop.
Dev Xdebug config file
This file contains hidden or 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=xdebug.so | |
# Default: 0 | |
# When this setting is set to 1, Xdebug will always attempt to start a remote debugging session | |
# and try to connect to a client, even if the GET/POST/COOKIE variable is not present | |
xdebug.remote_autostart = 1 | |
xdebug.remote_enable = 1 | |
xdebug.remote_host = localhost | |
xdebug.remote_port = 9000 | |
xdebug.show_local_vars = 0 | |
xdebug.var_display_max_data = 10000 | |
xdebug.var_display_max_depth = 20 | |
xdebug.show_exception_trace = 0 | |
xdebug.remote_log = /var/log/xdebug/log | |
xdebug.max_nesting_level = 1000 | |
xdebug.idekey = 'sublime.xdebug' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment