From dbbe91135ed352e0ea5ddf9ab148301e3eff3416 Mon Sep 17 00:00:00 2001 From: zeke Date: Tue, 1 Apr 2014 09:20:11 -0700 Subject: [PATCH 1/3] update homebrew instructions --- doc/00-intro.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index 4eeabddf2..dbe19ac56 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -95,13 +95,12 @@ Then, just run `composer` in order to run Composer instead of `php composer.phar Composer is part of the homebrew-php project. -1. Tap the homebrew-php repository into your brew installation if you haven't done - so yet: `brew tap josegonzalez/homebrew-php` -2. Run `brew install josegonzalez/php/composer`. -3. Use Composer with the `composer` command. - -> **Note:** If you receive an error saying PHP53 or higher is missing use this command to install php -> `brew install php53-intl` +```sh +brew update +brew tap josegonzalez/homebrew-php +brew install php53-intl # if you don't already have new-ish php +brew install josegonzalez/php/composer +``` ## Installation - Windows From 8c382d49299a9e3e0d4d4e848d9309571c12f95f Mon Sep 17 00:00:00 2001 From: zeke Date: Tue, 1 Apr 2014 09:46:16 -0700 Subject: [PATCH 2/3] forget a homebrew step that's required for php installation --- doc/00-intro.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index dbe19ac56..ea62f2299 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -98,7 +98,8 @@ Composer is part of the homebrew-php project. ```sh brew update brew tap josegonzalez/homebrew-php -brew install php53-intl # if you don't already have new-ish php +brew tap homebrew/versions +brew install php53-intl brew install josegonzalez/php/composer ``` From c16f83a8c84c69daec72fc8fca91b354fcc7f09f Mon Sep 17 00:00:00 2001 From: zeke Date: Tue, 1 Apr 2014 13:07:50 -0700 Subject: [PATCH 3/3] use php 5.5 in homebrew instructions --- doc/00-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index ea62f2299..451e9c359 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -99,7 +99,7 @@ Composer is part of the homebrew-php project. brew update brew tap josegonzalez/homebrew-php brew tap homebrew/versions -brew install php53-intl +brew install php55-intl brew install josegonzalez/php/composer ```