caibao / grpc_client
grpc_client
1.0.0
2018-06-25 06:30 UTC
Requires
- google/protobuf: ^3.3
- grpc/grpc: ^1.4
This package is auto-updated.
Last update: 2025-03-12 11:00:19 UTC
README
GrpcClient is a php client for grpc server depend on grpc_php_plugin. Making it easier for you to use grpc services.
Requirement
- PHP >= 5.6
- Composer
- grpc extension
- protoc(protobuf compiler)
- google/protobuf(protobuf runtime library package)
- grpc_php_plugin(PHP Protoc Plugin): Generates PHP gRPC service interface out of Protobuf IDL
Installation
composer require lat/grpcClient
Install protoc
- download the protoc binaries from the protocol buffers GitHub repository. Then unzip this file and Update the environment variable PATH to include the path to the protoc binary file.
- compile protoc from source
$ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc $ cd grpc $ git submodule update --init $ cd grpc/third_party/protobuf $ ./autogen.sh && ./configure && make $ sudo make install
Install PHP Protoc Plugin
$ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc $ cd grpc $ git submodule update --init $ make grpc_php_plugin
Compile proto file
# write the path of grpc_php_plugin
$ vim plugin.conf
$ ./create_client.sh
Usage
$clinet = GrpcServer\ClientFactory::createClient('sms.SMS', 'develop');
$clinet->SendVerificationCode();