If you have brew installed with multiple PHP versions i.e. 7.1, 7.2 and 7.3 on Mac OS X mojave, you can to do the following:
Install autoconf with brew
brew install autoconf
.Change to the PHP version that you want Xdebug on, run
brew unlink php@7.1 && brew link --force --overwrite php
. This will switch from PHP 7.1 to PHP 7.3.Download the latest Xdebug source from xdebug website.
Extract the Xdebug tar and navigate to extracted directory, where you'd see all the files.
Run
phpize
to configure the build for the new Zend engine.Run
./configure
.Run
make
.Xdebug extension
xdebug.so
gets compiled inmodules
directory.Create a new directory path under
/usr/local/lib/php/7.3.1/extensions/
and copyxdebug.so
to this location. Here,7.3.1
is the current version that I switched earlier, change this to match your PHP version.Open
php.ini
in an editor and enter
zend_extension="/usr/local/lib/php/7.3.1/extensions/xdebug.so"
then save the change.Run
php -v
and it will show Xdebug has been configured correctly.
If you want to configure Xdebug on another PHP version then just repeat from step 2 all the way to 11. As mentioned in earlier post, this way you don't need to disable/enable System Integrity Protection on Mac OS X.
Top comments (1)
Have you tried ServBay.dev?
It's a much easier tool for PHP developers, providing a user-friendly experience, especially for beginners. It supports all versions of PHP, MariaDB, PostgreSQL, as well as Redis and Memcached. You can run multiple PHP instances simultaneously and switch between them effortlessly. It also offers easy updates without the need to configure environment variables. This tool has greatly simplified my PHP development and is definitely worth trying!