composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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": "^5.6|^7.0|^8.0",
  10. "google/auth": "^1.10",
  11. "google/apiclient-services": "~0.200",
  12. "firebase/php-jwt": "~2.0||~3.0||~4.0||~5.0||~6.0",
  13. "monolog/monolog": "^1.17||^2.0||^3.0",
  14. "phpseclib/phpseclib": "~2.0||^3.0.2",
  15. "guzzlehttp/guzzle": "~5.3.3||~6.0||~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": "^0.3.2|^1.1",
  23. "phpcompatibility/php-compatibility": "^9.2",
  24. "composer/composer": "^1.10.22",
  25. "yoast/phpunit-polyfills": "^1.0",
  26. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  27. "phpunit/phpunit": "^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  28. },
  29. "suggest": {
  30. "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Google\\": "src/"
  35. },
  36. "files": [
  37. "src/aliases.php"
  38. ],
  39. "classmap": [
  40. "src/aliases.php"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-main": "2.x-dev"
  46. }
  47. }
  48. }