composer.json.template 590 B

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