diff options
author | Stanley Cheung <stanley.cheung@gmail.com> | 2016-07-13 20:16:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 20:16:13 -0700 |
commit | 3fb819fd2a51991a54c946ae8c8005f7c25dd2eb (patch) | |
tree | 771fb569f4c3c6fa4b19d5dbc5fb00d759bc1db0 /src | |
parent | 7a70bb5486c199fb32742b2f1617e8206846cf65 (diff) | |
parent | ce3d05c753ae410deab8cfbf252709586a06ee62 (diff) |
Merge pull request #7364 from stanley-cheung/php-prepare-for-ga
php: prepare for GA release
Diffstat (limited to 'src')
-rw-r--r-- | src/php/README.md | 6 | ||||
-rw-r--r-- | src/php/composer.json | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/php/README.md b/src/php/README.md index 6cc1ba4d46..fba2c0f13b 100644 --- a/src/php/README.md +++ b/src/php/README.md @@ -5,7 +5,7 @@ This directory contains source code for PHP implementation of gRPC layered on sh #Status -Beta +GA ## Environment @@ -43,7 +43,7 @@ $ sudo mv phpunit-old.phar /usr/bin/phpunit Install the gRPC PHP extension ```sh -sudo pecl install grpc-beta +sudo pecl install grpc ``` This will compile and install the gRPC PHP extension into the standard PHP extension directory. You should be able to run the [unit tests](#unit-tests), with the PHP extension installed. @@ -75,7 +75,7 @@ $ sudo make install Install the gRPC PHP extension from PECL ```sh -$ sudo pecl install grpc-beta +$ sudo pecl install grpc ``` Or, compile from source diff --git a/src/php/composer.json b/src/php/composer.json index 2ad73223c6..b95cde1234 100644 --- a/src/php/composer.json +++ b/src/php/composer.json @@ -5,6 +5,7 @@ "keywords": ["rpc"], "homepage": "http://grpc.io", "license": "BSD-3-Clause", + "version": "1.0.0", "repositories": [ { "type": "vcs", |