composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "google/apiclient",
  3. "type": "library",
  4. "description": "Client library for Google APIs",
  5. "keywords": ["google"],
  6. "homepage": "http://developers.google.com/api-client-library/php",
  7. "license": "Apache-2.0",
  8. "require": {
  9. "php": "^7.4|^8.0",
  10. "google/auth": "^1.28",
  11. "google/apiclient-services": "~0.200",
  12. "firebase/php-jwt": "~6.0",
  13. "monolog/monolog": "^2.9||^3.0",
  14. "phpseclib/phpseclib": "^3.0.2",
  15. "guzzlehttp/guzzle": "~6.5||~7.0",
  16. "guzzlehttp/psr7": "^1.8.4||^2.2.1"
  17. },
  18. "require-dev": {
  19. "squizlabs/php_codesniffer": "^3.0",
  20. "symfony/dom-crawler": "~2.1",
  21. "symfony/css-selector": "~2.1",
  22. "cache/filesystem-adapter": "^1.1",
  23. "phpcompatibility/php-compatibility": "^9.2",
  24. "composer/composer": "^1.10.22",
  25. "phpspec/prophecy-phpunit": "^2.0",
  26. "phpunit/phpunit": "^9.5"
  27. },
  28. "suggest": {
  29. "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Google\\": "src/"
  34. },
  35. "files": [
  36. "src/aliases.php"
  37. ],
  38. "classmap": [
  39. "src/aliases.php"
  40. ]
  41. },
  42. "extra": {
  43. "branch-alias": {
  44. "dev-main": "2.x-dev"
  45. }
  46. }
  47. }