composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "google/auth",
  3. "type": "library",
  4. "description": "Google Auth Library for PHP",
  5. "keywords": ["google", "oauth2", "authentication"],
  6. "homepage": "https://github.com/google/google-auth-library-php",
  7. "license": "Apache-2.0",
  8. "support": {
  9. "docs": "https://cloud.google.com/php/docs/reference/auth/latest"
  10. },
  11. "require": {
  12. "php": "^8.1",
  13. "firebase/php-jwt": "^6.0||^7.0",
  14. "guzzlehttp/guzzle": "^7.4.5",
  15. "guzzlehttp/psr7": "^2.4.5",
  16. "psr/http-message": "^1.1||^2.0",
  17. "psr/cache": "^2.0||^3.0",
  18. "psr/log": "^2.0||^3.0"
  19. },
  20. "require-dev": {
  21. "guzzlehttp/promises": "^2.0",
  22. "squizlabs/php_codesniffer": "^4.0",
  23. "phpunit/phpunit": "^9.6",
  24. "phpspec/prophecy-phpunit": "^2.1",
  25. "sebastian/comparator": ">=1.2.3",
  26. "phpseclib/phpseclib": "^3.0.35",
  27. "kelvinmo/simplejwt": "^1.1.0",
  28. "webmozart/assert": "^1.11||^2.0",
  29. "symfony/process": "^6.0||^7.0",
  30. "symfony/filesystem": "^6.3||^7.3"
  31. },
  32. "suggest": {
  33. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Google\\Auth\\": "src"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Google\\Auth\\Tests\\": "tests"
  43. }
  44. }
  45. }