Last active
November 10, 2019 21:38
-
-
Save QusaiFarraj/618a2a1814a051f4dfc4194cb1d57996 to your computer and use it in GitHub Desktop.
Revisions
-
QusaiFarraj renamed this gist
Nov 10, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
QusaiFarraj created this gist
Nov 10, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ When you transition from PHP71 to PHP72, you will need check that your projects ar compataible with PHP72. In order to do so, you need to have both PHP71 nad PHP72 installed on your machine. To do so: 1- install your default php version, if you have not already. For me it's `brew install php71` 2- install php72 `brew isntall php72` 3- symlink php72 `ln -s /usr/local/Cellar/php@7.2/7.2.24/bin/php /usr/local/bin/php72` And that's it. I hope this helps. Feedback is always welcome.