composer.json 501 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "grpc/grpc",
  3. "type": "library",
  4. "description": "gRPC library for PHP",
  5. "version": "0.14.2",
  6. "keywords": ["rpc"],
  7. "homepage": "http://grpc.io",
  8. "license": "BSD-3-Clause",
  9. "repositories": [
  10. {
  11. "type": "vcs",
  12. "url": "https://github.com/stanley-cheung/Protobuf-PHP"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.5.0",
  17. "datto/protobuf-php": "dev-master",
  18. "google/auth": "v0.7"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Grpc\\": "src/php/lib/Grpc/"
  23. }
  24. }
  25. }