- xDebug PHP 7.4 with PHPStorm on Mac
Last active
March 9, 2024 23:06
-
-
Save abenevaut/55d25dfb724f67514ee06b51459a8e99 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
// /usr/local/etc/php/7.4/conf.d/ext-xdebug.ini | |
zend_extension=xdebug.so | |
xdebug.default_enable=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_autostart=1 | |
xdebug.remote_port=9001 | |
xdebug.remote_host=127.0.0.1 | |
xdebug.remote_connect_back=1 | |
xdebug.idekey=PHPSTORM | |
xdebug.show_error_trace=1 | |
xdebug.file_link_format=phpstorm://open?%f:%l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment