composer.json 617 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "google/apiclient-services",
  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. },
  11. "require-dev": {
  12. "phpunit/phpunit": "^5.7||^8.5.13"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "Google\\Service\\": "src"
  17. },
  18. "files": [
  19. "autoload.php"
  20. ]
  21. },
  22. "autoload-dev": {
  23. "psr-4": {
  24. "Google\\": "tests/mocks"
  25. }
  26. }
  27. }