Created
October 31, 2018 18:07
-
-
Save dabiddo/c6394558b29b05061f2517b7a7ec86d5 to your computer and use it in GitHub Desktop.
xdebug configuration for PHPStorm + Laragon
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
;using PHP 7.1.14 | |
;PHPStorm - activate 'Start listenting to Debug Connections | |
[XDebug] | |
zend_extension = C:\laragon\bin\php\php-7.1.14-Win32-VC14-x64\ext\php_xdebug-2.6.1-7.1-vc14-x86_64.dll | |
xdebug.remote_autostart = 1 | |
xdebug.profiler_append = 0 | |
xdebug.profiler_enable = 0 | |
xdebug.profiler_enable_trigger = 0 | |
xdebug.profiler_output_dir = "c:\xampp\tmp" | |
;xdebug.profiler_output_name = "cachegrind.out.%t-%s" | |
xdebug.remote_enable = 1 | |
xdebug.remote_handler = "dbgp" | |
xdebug.remote_host = "127.0.0.1" | |
xdebug.remote_log = "c:\laragon\tmp\xdebug.txt" | |
xdebug.remote_port = 9000 | |
xdebug.trace_output_dir = "c:\laragon\tmp" | |
;36000 = 10h | |
xdebug.remote_cookie_expire_time = 36000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment