composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "google/gax",
  3. "type": "library",
  4. "description": "Google API Core for PHP",
  5. "keywords": ["google"],
  6. "homepage": "https://github.com/googleapis/gax-php",
  7. "license": "BSD-3-Clause",
  8. "require": {
  9. "php": ">=7.4",
  10. "google/auth": "^1.34.0",
  11. "google/grpc-gcp": "^0.2||^0.3",
  12. "grpc/grpc": "^1.13",
  13. "google/protobuf": "^3.22",
  14. "guzzlehttp/promises": "^1.4||^2.0",
  15. "guzzlehttp/psr7": "^2.0",
  16. "google/common-protos": "^4.4",
  17. "google/longrunning": "~0.2"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^9.0",
  21. "squizlabs/php_codesniffer": "3.*",
  22. "phpspec/prophecy-phpunit": "^2.0"
  23. },
  24. "conflict": {
  25. "ext-protobuf": "<3.7.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Google\\ApiCore\\": "src",
  30. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Google\\ApiCore\\Dev\\": "dev/src",
  36. "Google\\ApiCore\\": "tests",
  37. "GPBMetadata\\Google\\": "metadata/Google"
  38. }
  39. },
  40. "scripts": {
  41. "regenerate-test-protos": "dev/sh/regenerate-test-protos.sh"
  42. }
  43. }