Created
May 10, 2019 10:31
-
-
Save sumitpore/e3911b6ab4f10e45c92eab7af9a73608 to your computer and use it in GitHub Desktop.
xdebug Config
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 | |
xdebug.profiler_enable=0 | |
xdebug.profiler_enable_trigger=1 | |
xdebug.trace_enable_trigger=1 | |
xdebug.trace_format=1 | |
xdebug.collect_params=4 | |
xdebug.collect_return=1 | |
xdebug.show_mem_delta=1 | |
xdebug.auto_trace=0 | |
xdebug.profiler_output_dir=/tmp | |
xdebug.remote_autostart=0 | |
xdebug.max_nesting_level=5000 | |
xdebug.remote_enable=1 | |
xdebug.remote_connect_back=1 | |
xdebug.remote_port=9000 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_server=127.0.0.1 | |
xdebug.profiler_output_name=cachegrind.out.%p-%H-%R | |
xdebug.profiler_output_dir=/home/sumit/Documents/xdebug-profiles | |
xdebug.trace_output_dir=/home/sumit/Documents/xdebug-tracing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment