Merge pull request #11173 from stanley-cheung/php-split-protobuf-dep
PHP: stop requiring google/protobuf PHP implementation
No related branches found
No related tags found
Showing
- composer.json 5 additions, 2 deletionscomposer.json
- examples/php/composer.json 2 additions, 1 deletionexamples/php/composer.json
- src/php/README.md 22 additions, 0 deletionssrc/php/README.md
- src/php/tests/qps/composer.json 2 additions, 1 deletionsrc/php/tests/qps/composer.json
- templates/composer.json.template 5 additions, 2 deletionstemplates/composer.json.template
... | ... | @@ -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/" | ||
... | ... |
Please register or sign in to comment