composer.json 501 B

1234567891011121314151617181920212223242526
  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. },
  18. "require-dev": {
  19. "google/auth": "v0.9"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Grpc\\": "src/php/lib/Grpc/"
  24. }
  25. }
  26. }