Skip to content

Instantly share code, notes, and snippets.

View viitechsolutions's full-sized avatar

VII Tech viitechsolutions

View GitHub Profile
@viitechsolutions
viitechsolutions / install-xdebug.sh
Created April 29, 2020 18:36
Install xdebug on Mac or Linux
curl https://xdebug.org/files/xdebug-2.9.5.tgz --output xdebug-2.9.5.tgz
tar -xzf xdebug-2.9.5.tgz
cd xdebug-2.9.5
phpize
./configure --enable-xdebug
make
make install