No Description

composer.json 714B

123456789101112131415161718192021222324252627
  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. "require": {
  9. "php": ">=5.4",
  10. "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
  11. "guzzlehttp/guzzle": "~5.3.1|~6.0",
  12. "guzzlehttp/psr7": "^1.2",
  13. "psr/http-message": "^1.0",
  14. "psr/cache": "^1.0"
  15. },
  16. "require-dev": {
  17. "guzzlehttp/promises": "0.1.1|^1.3",
  18. "friendsofphp/php-cs-fixer": "^1.11",
  19. "phpunit/phpunit": "^4.8.36|^5.7",
  20. "sebastian/comparator": ">=1.2.3"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Google\\Auth\\": "src"
  25. }
  26. }
  27. }