โ˜… How to upgrade from PHP 7.1 to 7.2 on MacOS using Homebrew

1 ยท Freek Van der Herten ยท Feb. 1, 2018, 5:50 p.m.
PHP 7.2 was released almost two months ago. I decided to wait a bit until a stable version of Xdebug with PHP 7.2 compatiblity was available. And that happened yesterday with the release of Xdebug 2.6. I'm on MacOS and use brew to install stuff. Upgrading from PHP 7.1 to 7.2 is laughably easy. These are the steps that I performed: brew tap homebrew/homebrew-php brew unlink php71 brew install php72 --with-argon2 brew install php72-xdebug Boom! Done! If you need imagick or redis support, execute...