Last active
August 10, 2021 09:14
-
-
Save mustardandrew/0cd3e406bc832796ff9b81149c24597b 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
[Xdebug] | |
zend_extension="/usr/lib/php5/20131226/xdebug.so" | |
xdebug.remote_autostart=on | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_mode=req | |
xdebug.remote_host=127.0.0.1 | |
xdebug.remote_port=9001 | |
xdebug.max_nesting_level=300 | |
xdebug.idekey="PHPSTORM" | |
xdebug.profiler_enable=1 | |
xdebug.profiler_output_dir="/home/mustardandrew/tmp" | |
xdebug.remote_connect_back=1 |
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=/usr/lib/php/20170718/xdebug.so | |
xdebug.remote_autostart = 1 | |
xdebug.start_with_request = 1 | |
xdebug.mode = debug | |
xdebug.remote_enable = 1 | |
xdebug.remote_handler = dbgp | |
xdebug.client_host = 127.0.0.1 | |
xdebug.remote_log = /tmp/xdebug_remote.log | |
xdebug.remote_mode = req | |
xdebug.client_port = 9001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment