composer.json.template 603 B

12345678910111213141516171819202122232425
  1. %YAML 1.2
  2. --- |
  3. {
  4. "name": "grpc/grpc",
  5. "type": "library",
  6. "description": "gRPC library for PHP",
  7. "keywords": ["rpc"],
  8. "homepage": "https://grpc.io",
  9. "license": "Apache-2.0",
  10. "require": {
  11. "php": ">=7.0.0"
  12. },
  13. "require-dev": {
  14. "google/auth": "^v1.3.0"
  15. },
  16. "suggest": {
  17. "ext-protobuf": "For better performance, install the protobuf C extension.",
  18. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Grpc\\": "src/php/lib/Grpc/"
  23. }
  24. }
  25. }