composer.json 403 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. "require": {
  9. "php": ">=5.5.0",
  10. "ext-grpc": "*",
  11. "google/protobuf": "v3.1.0-alpha-1"
  12. },
  13. "require-dev": {
  14. "google/auth": "v0.9"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Grpc\\": "src/php/lib/Grpc/"
  19. }
  20. }
  21. }