aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2017-05-16 18:09:36 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2017-05-16 18:09:36 -0700
commit6e589c6a15da708a2081b1955170393321327878 (patch)
tree1d9a8220439d3b24d7113146f363e5eb28ef376f /composer.json
parentbcb65f0bd533ff0c7babf3b06a424d2bd5f1d37d (diff)
PHP: stop requiring google/protobuf PHP implementation
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index 284b57a809..2cf3f17221 100644
--- a/composer.json
+++ b/composer.json
@@ -6,12 +6,15 @@
"homepage": "http://grpc.io",
"license": "BSD-3-Clause",
"require": {
- "php": ">=5.5.0",
- "google/protobuf": "^v3.3.0"
+ "php": ">=5.5.0"
},
"require-dev": {
"google/auth": "v0.9"
},
+ "suggest": {
+ "ext-protobuf": "For better performance, install the protobuf C extension.",
+ "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
+ },
"autoload": {
"psr-4": {
"Grpc\\": "src/php/lib/Grpc/"