mirror of https://github.com/grpc/grpc.git
parent
bbc20b59f8
commit
8749c96595
6 changed files with 105 additions and 12 deletions
@ -1,8 +1,7 @@ |
|||||||
{ |
{ |
||||||
"name": "grpc/grpc-demo", |
"name": "grpc/grpc-demo", |
||||||
"description": "gRPC example for PHP", |
"description": "gRPC example for PHP", |
||||||
"minimum-stability": "dev", |
|
||||||
"require": { |
"require": { |
||||||
"grpc/grpc": "v0.15.2" |
"grpc/grpc": "v1.0.0", |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,23 @@ |
|||||||
|
%YAML 1.2 |
||||||
|
--- | |
||||||
|
{ |
||||||
|
"name": "grpc/grpc", |
||||||
|
"type": "library", |
||||||
|
"description": "gRPC library for PHP", |
||||||
|
"keywords": ["rpc"], |
||||||
|
"homepage": "http://grpc.io", |
||||||
|
"license": "BSD-3-Clause", |
||||||
|
"version": "${settings.php_version.php_composer()}", |
||||||
|
"require": { |
||||||
|
"php": ">=5.5.0", |
||||||
|
"stanley-cheung/protobuf-php": "v0.6" |
||||||
|
}, |
||||||
|
"require-dev": { |
||||||
|
"google/auth": "v0.9" |
||||||
|
}, |
||||||
|
"autoload": { |
||||||
|
"psr-4": { |
||||||
|
"Grpc\\": "lib/Grpc/" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue