composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.0",
  10. "google/auth": "^1.18.0",
  11. "google/grpc-gcp": "^0.2",
  12. "grpc/grpc": "^1.13",
  13. "google/protobuf": "^3.21.4",
  14. "guzzlehttp/promises": "^1.3",
  15. "guzzlehttp/psr7": "^1.7.0||^2",
  16. "google/common-protos": "^1.3.1||^2.0||^3.0",
  17. "google/longrunning": "^0.2"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^5.5||^8.5",
  21. "squizlabs/php_codesniffer": "3.*",
  22. "yoast/phpunit-polyfills": "^1.0",
  23. "phpspec/prophecy": "^1.10"
  24. },
  25. "conflict": {
  26. "ext-protobuf": "<3.7.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Google\\ApiCore\\": "src",
  31. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Google\\ApiCore\\Dev\\": "dev/src",
  37. "Google\\ApiCore\\": "tests",
  38. "GPBMetadata\\Google\\": "metadata/Google"
  39. }
  40. },
  41. "scripts": {
  42. "regenerate-test-protos": "dev/sh/regenerate-test-protos.sh"
  43. }
  44. }