Skip to content

Instantly share code, notes, and snippets.

@abenevaut
Last active March 9, 2024 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abenevaut/55d25dfb724f67514ee06b51459a8e99 to your computer and use it in GitHub Desktop.
Save abenevaut/55d25dfb724f67514ee06b51459a8e99 to your computer and use it in GitHub Desktop.
  • xDebug PHP 7.4 with PHPStorm on Mac
// /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