Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Jerry php mac instruction #764

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/quickstart/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ $ sudo yum install php56w php56w-devel php-pear phpunit gcc zlib-devel
**Install PHP and PECL on Mac:**

```sh
$ brew install homebrew/php/php56-grpc
$ brew install homebrew/homebrew-core/[email protected]
$ echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.zshrc
$ echo 'export PATH="/usr/local/opt/[email protected]/sbin:$PATH"' >> ~/.zshrc
$ source ~/.zshrc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

zsh is a non standard shell. Is this really required?

$ curl -O http://pear.php.net/go-pear.phar
$ sudo php -d detect_unicode=0 go-pear.phar
```
Expand Down