composer.json 577 B

123456789101112131415161718192021222324
  1. {
  2. "name": "google/grpc-gcp",
  3. "description": "gRPC GCP library for channel management",
  4. "license": "Apache-2.0",
  5. "require": {
  6. "php": ">=5.5.0",
  7. "google/protobuf": "^v3.3.0",
  8. "grpc/grpc": "^v1.13.0",
  9. "google/auth": "^1.3",
  10. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  11. },
  12. "require-dev": {
  13. "phpunit/phpunit": "4.8.36",
  14. "google/cloud-spanner": "^1.7"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Grpc\\Gcp\\": "src/"
  19. },
  20. "classmap": [
  21. "src/generated/"
  22. ]
  23. }
  24. }