composer.json 478 B

123456789101112131415161718192021222324
  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. "repositories": [
  9. {
  10. "type": "vcs",
  11. "url": "https://github.com/stanley-cheung/Protobuf-PHP"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.5.0",
  16. "datto/protobuf-php": "dev-master",
  17. "google/auth": "v0.7"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Grpc\\": "src/php/lib/Grpc/"
  22. }
  23. }
  24. }