Skip to content

Instantly share code, notes, and snippets.

@SebKay
Created July 8, 2021 14:15
Show Gist options
  • Save SebKay/d896a52403de276b126839f57112fad6 to your computer and use it in GitHub Desktop.
Save SebKay/d896a52403de276b126839f57112fad6 to your computer and use it in GitHub Desktop.
# Install PHP via Homebrew
brew install php@7.4
# Install Xdebug via Pecl
pecl install xdebug
# Enable Xdebug in php.ini
nano /usr/local/etc/php/7.4/php.ini
# Add this to php.ini
zend_extension="xdebug.so"
xdebug.mode=coverage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment