Created
July 8, 2021 14:15
-
-
Save SebKay/d896a52403de276b126839f57112fad6 to your computer and use it in GitHub Desktop.
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
# Install PHP via Homebrew | |
brew install [email protected] | |
# 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