mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.3 KiB
65 lines
1.3 KiB
10 years ago
|
gRPC in 3 minutes (PHP)
|
||
|
===========================
|
||
|
|
||
|
PREREQUISITES
|
||
|
-------------
|
||
|
|
||
|
This requires PHP 5.5 or greater.
|
||
|
|
||
|
INSTALL
|
||
|
-------
|
||
10 years ago
|
- On Mac OS X, install [homebrew][]. On Linux, install [linuxbrew][]. Run the following command to install gRPC.
|
||
|
|
||
10 years ago
|
```sh
|
||
|
$ curl -fsSL https://goo.gl/getgrpc | bash -s php
|
||
|
```
|
||
|
This will download and run the [gRPC install script][] and compile the gRPC PHP extension.
|
||
10 years ago
|
|
||
|
- Clone this repository
|
||
|
|
||
|
```sh
|
||
|
$ git clone https://github.com/grpc/grpc-common.git
|
||
|
```
|
||
|
|
||
|
- Install composer
|
||
|
|
||
|
```
|
||
|
$ cd grpc-common/php
|
||
|
$ curl -sS https://getcomposer.org/installer | php
|
||
10 years ago
|
$ php composer.phar install
|
||
10 years ago
|
```
|
||
|
|
||
|
TRY IT!
|
||
|
-------
|
||
|
|
||
|
- Run the server
|
||
|
|
||
10 years ago
|
Please follow the instruction in [Node][] to run the server
|
||
10 years ago
|
```
|
||
|
$ cd grpc-common/node
|
||
|
$ nodejs greeter_server.js
|
||
|
```
|
||
|
|
||
|
- Run the client
|
||
|
|
||
|
```
|
||
|
$ cd grpc-common/php
|
||
10 years ago
|
$ ./run_greeter_client.sh
|
||
10 years ago
|
```
|
||
|
|
||
|
NOTE
|
||
|
----
|
||
|
|
||
|
This directory has a copy of `helloworld.proto` because it currently depends on
|
||
|
some Protocol Buffer 2.0 syntax. There is no proto3 support for PHP yet.
|
||
|
|
||
|
TUTORIAL
|
||
|
--------
|
||
|
|
||
|
Coming soon
|
||
10 years ago
|
|
||
|
[homebrew]:http://brew.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-common/tree/master/node
|