composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "google/auth",
  3. "type": "library",
  4. "description": "Google Auth Library for PHP",
  5. "keywords": ["google", "oauth2", "authentication"],
  6. "homepage": "http://github.com/google/google-auth-library-php",
  7. "license": "Apache-2.0",
  8. "support": {
  9. "docs": "https://googleapis.github.io/google-auth-library-php/main/"
  10. },
  11. "require": {
  12. "php": "^7.1||^8.0",
  13. "firebase/php-jwt": "~5.0",
  14. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  15. "guzzlehttp/psr7": "^1.7|^2.0",
  16. "psr/http-message": "^1.0",
  17. "psr/cache": "^1.0|^2.0|^3.0"
  18. },
  19. "require-dev": {
  20. "guzzlehttp/promises": "0.1.1|^1.3",
  21. "squizlabs/php_codesniffer": "^3.5",
  22. "phpunit/phpunit": "^7.5||^8.5",
  23. "phpspec/prophecy-phpunit": "^1.1",
  24. "sebastian/comparator": ">=1.2.3",
  25. "phpseclib/phpseclib": "^2.0.31",
  26. "kelvinmo/simplejwt": "^0.2.5|^0.5.1"
  27. },
  28. "suggest": {
  29. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Google\\Auth\\": "src"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Google\\Auth\\Tests\\": "tests"
  39. }
  40. }
  41. }