aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/php/README.md')
-rw-r--r--src/php/README.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/php/README.md b/src/php/README.md
index cb9b48aee3..42ddb2d731 100644
--- a/src/php/README.md
+++ b/src/php/README.md
@@ -9,12 +9,11 @@ Pre-Alpha : This gRPC PHP implementation is work-in-progress and is not expected
## ENVIRONMENT
-Install `php5` and `php5-dev`.
+Prerequisite: PHP 5.5 or later, PHPUnit, pecl
-To run the tests, additionally install `phpunit`.
-
-Alternatively, build and install PHP 5.5 or later from source with standard
-configuration options.
+```sh
+sudo apt-get install php5 php5-dev phpunit php-pear
+```
## Build from Homebrew
@@ -48,7 +47,7 @@ $ make check
$ sudo make install
```
-Build and install the gRPC C core
+Build and install the gRPC C core libraries
```sh
$ cd grpc
@@ -56,7 +55,13 @@ $ make
$ sudo make install
```
-Build the gRPC PHP extension
+Install the gRPC PHP extension
+
+```sh
+$ sudo pecl install grpc
+```
+
+OR
```sh
$ cd grpc/src/php/ext/grpc
@@ -125,4 +130,3 @@ $ ./bin/run_gen_code_test.sh
[linuxbrew]:https://github.com/Homebrew/linuxbrew#installation
[gRPC install script]:https://raw.githubusercontent.com/grpc/homebrew-grpc/master/scripts/install
[Node]:https://github.com/grpc/grpc/tree/master/src/node/examples
-