... | ... | @@ -18,7 +18,25 @@ It is not intended to replace more robust developing environments such as Vagran |
|
|
|
|
|
#### Instructions for Mac OS X
|
|
|
|
|
|
IF you need to [unsinstall Homebrew](http://brew.sh)
|
|
|
All of the installations on the Mac rely on [Homebrew](http://brew.sh).
|
|
|
|
|
|
###### 1. install homebrew
|
|
|
```bash
|
|
|
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
|
|
|
```
|
|
|
You may be asked to install the Xcode developer tools at some point in the installation, make sure you install them and try to run Xcode in the GUI if possible afterward.
|
|
|
|
|
|
|
|
|
###### 2. tap dupes (essentially register a repo)
|
|
|
```bash
|
|
|
brew tap homebrew/dupes
|
|
|
brew tap josegonzalez/homebrew-php
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If you need to unsinstall Homebrew
|
|
|
|
|
|
###### uninstall homebrew
|
|
|
```bash
|
... | ... | @@ -28,9 +46,3 @@ brew prune |
|
|
rm -rf Library .git .gitignore bin/brew README.md share/man/man1/brew
|
|
|
rm -rf ~/Library/Caches/Homebrew
|
|
|
``` |
|
|
|
|
|
###### install homebrew
|
|
|
```bash
|
|
|
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
|
|
|
```
|
|
|
|