Last active
April 19, 2025 15:57
-
-
Save olavocneto/1277b9f702fdb1b235eb254a29f52c1a to your computer and use it in GitHub Desktop.
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 2 | |
; Ubuntu | |
[xdebug] | |
zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20190902/xdebug.so | |
xdebug.remote_enable=1 | |
xdebug.remote_autostart=1 | |
xdebug.remote_port=9000 | |
xdebug.remote_connect_back=true | |
; Windows WSL | |
zend_extension=xdebug.so | |
xdebug.mode=debug | |
xdebug.client_host=172.31.128.1 | |
; Profiler | |
;xdebug.profiler_enable = 0 | |
;xdebug.profiler_enable_trigger = 1 | |
;xdebug.profiler_enable_trigger_value = "" | |
;xdebug.profiler_output_dir = "/tmp" | |
;xdebug.profiler_output_name = "cachegrind.out.%p" | |
; Query string params | |
?XDEBUG_SESSION_START=phpstorm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment