From bdd27c18c0dce2c720cdb6df1d365fa456a052d3 Mon Sep 17 00:00:00 2001 From: Donato Rotunno Date: Fri, 9 Jan 2015 11:23:51 +0100 Subject: [PATCH 1/2] Add Liip's popular installation method for OS X --- _posts/01-04-01-Mac-Setup.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_posts/01-04-01-Mac-Setup.md b/_posts/01-04-01-Mac-Setup.md index 0dceb5e..853f4a5 100644 --- a/_posts/01-04-01-Mac-Setup.md +++ b/_posts/01-04-01-Mac-Setup.md @@ -23,6 +23,10 @@ between them by modifying your `PATH` variable. [phpbrew] is a tool for installing and managing multiple PHP versions. This can be really useful if two different applications/projects require different versions of PHP, and you are not using virtual machines. +### Install PHP via Liip's binary installer +Another popular option is [php-osx.liip.ch] which provides one liner installation method from version 5.3 to 5.6. +It doesn't overwrite the php binaries installed by Apple, but installs everything in a separate location (/usr/local/php5). + ### Compile from Source Another option that gives you control over the version of PHP you install, is to [compile it yourself][mac-compile]. @@ -39,6 +43,7 @@ you and tie them all together, but ease of setup comes with a trade-off of flexi [Homebrew]: http://brew.sh/ [Homebrew PHP]: https://github.com/Homebrew/homebrew-php#installation [phpbrew]: https://github.com/phpbrew/phpbrew +[php-osx.liip.ch]: http://php-osx.liip.ch/ [mac-compile]: http://php.net/install.macosx.compile [xcode-gcc-substitution]: https://github.com/kennethreitz/osx-gcc-installer ["Command Line Tools for XCode"]: https://developer.apple.com/downloads From af6ae2565c151964f942ceaaeecc0f7d671369ad Mon Sep 17 00:00:00 2001 From: Donato Rotunno Date: Fri, 9 Jan 2015 11:37:18 +0100 Subject: [PATCH 2/2] Improve wording --- _posts/01-04-01-Mac-Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/01-04-01-Mac-Setup.md b/_posts/01-04-01-Mac-Setup.md index 853f4a5..e2cb3b9 100644 --- a/_posts/01-04-01-Mac-Setup.md +++ b/_posts/01-04-01-Mac-Setup.md @@ -24,7 +24,7 @@ between them by modifying your `PATH` variable. applications/projects require different versions of PHP, and you are not using virtual machines. ### Install PHP via Liip's binary installer -Another popular option is [php-osx.liip.ch] which provides one liner installation method from version 5.3 to 5.6. +Another popular option is [php-osx.liip.ch] which provides one liner installation methods for versions 5.3 through 5.6. It doesn't overwrite the php binaries installed by Apple, but installs everything in a separate location (/usr/local/php5). ### Compile from Source