Skip to content

Instantly share code, notes, and snippets.

@lexod
lexod / ToPHP71.sh
Created August 5, 2020 17:05
PHP: icu4c version incompatibility fix
#!/bin/bash
brew services stop php@7.2;
brew unlink php@7.2;
brew link --fore php@7.1;
brew switch icu4c 64.2;
brew services start php@7.1;