composer.json 398 B

123456789101112131415161718192021
  1. {
  2. "name": "grpc/grpc",
  3. "type": "library",
  4. "description": "gRPC library for PHP",
  5. "keywords": ["rpc"],
  6. "homepage": "http://grpc.io",
  7. "license": "BSD-3-Clause",
  8. "version": "1.1.0",
  9. "require": {
  10. "php": ">=5.5.0",
  11. "stanley-cheung/protobuf-php": "v0.6"
  12. },
  13. "require-dev": {
  14. "google/auth": "v0.9"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Grpc\\": "lib/Grpc/"
  19. }
  20. }
  21. }