Merge pull request #7363 from stanley-cheung/php-prepare-for-ga-v1_0branch

php: prepare for GA release
pull/7381/head
kpayson64 9 years ago committed by GitHub
commit 85fa79d228
  1. 2
      examples/php/README.md
  2. 18
      package.xml
  3. 6
      src/php/README.md
  4. 1
      src/php/composer.json
  5. 18
      templates/package.xml.template

@ -11,7 +11,7 @@ INSTALL
- Install the gRPC PHP extension - Install the gRPC PHP extension
```sh ```sh
$ [sudo] pecl install grpc-beta $ [sudo] pecl install grpc
``` ```
- Clone this repository - Clone this repository

@ -10,18 +10,19 @@
<email>grpc-packages@google.com</email> <email>grpc-packages@google.com</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2016-06-30</date> <date>2016-07-13</date>
<time>16:06:07</time> <time>16:06:07</time>
<version> <version>
<release>1.0.0</release> <release>1.0.0</release>
<api>1.0.0</api> <api>1.0.0</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>stable</release>
<api>beta</api> <api>stable</api>
</stability> </stability>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- GA release
- Fix shutdown hang problem #4017 - Fix shutdown hang problem #4017
</notes> </notes>
<contents> <contents>
@ -1086,16 +1087,17 @@ Update to wrap gRPC C Core version 0.10.0
</release> </release>
<release> <release>
<version> <version>
<release>0.15.1</release> <release>1.0.0</release>
<api>0.15.1</api> <api>1.0.0</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>stable</release>
<api>beta</api> <api>stable</api>
</stability> </stability>
<date>2016-06-30</date> <date>2016-07-13</date>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- GA release
- Fix shutdown hang problem #4017 - Fix shutdown hang problem #4017
</notes> </notes>
</release> </release>

@ -5,7 +5,7 @@ This directory contains source code for PHP implementation of gRPC layered on sh
#Status #Status
Beta GA
## Environment ## Environment
@ -43,7 +43,7 @@ $ sudo mv phpunit-old.phar /usr/bin/phpunit
Install the gRPC PHP extension Install the gRPC PHP extension
```sh ```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. 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 Install the gRPC PHP extension from PECL
```sh ```sh
$ sudo pecl install grpc-beta $ sudo pecl install grpc
``` ```
Or, compile from source Or, compile from source

@ -5,6 +5,7 @@
"keywords": ["rpc"], "keywords": ["rpc"],
"homepage": "http://grpc.io", "homepage": "http://grpc.io",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"version": "1.0.0",
"repositories": [ "repositories": [
{ {
"type": "vcs", "type": "vcs",

@ -12,18 +12,19 @@
<email>grpc-packages@google.com</email> <email>grpc-packages@google.com</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2016-06-30</date> <date>2016-07-13</date>
<time>16:06:07</time> <time>16:06:07</time>
<version> <version>
<release>${settings.php_version.php()}</release> <release>${settings.php_version.php()}</release>
<api>${settings.php_version.php()}</api> <api>${settings.php_version.php()}</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>stable</release>
<api>beta</api> <api>stable</api>
</stability> </stability>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- GA release
- Fix shutdown hang problem #4017 - Fix shutdown hang problem #4017
</notes> </notes>
<contents> <contents>
@ -205,16 +206,17 @@
</release> </release>
<release> <release>
<version> <version>
<release>0.15.1</release> <release>1.0.0</release>
<api>0.15.1</api> <api>1.0.0</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>stable</release>
<api>beta</api> <api>stable</api>
</stability> </stability>
<date>2016-06-30</date> <date>2016-07-13</date>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- GA release
- Fix shutdown hang problem #4017 - Fix shutdown hang problem #4017
</notes> </notes>
</release> </release>

Loading…
Cancel
Save