composer.json.template 542 B

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