| 123456789101112131415161718192021222324252627 | {    "name": "google/apiclient-services",    "type": "library",    "description": "Client library for Google APIs",    "keywords": ["google"],    "homepage": "http://developers.google.com/api-client-library/php",    "license": "Apache-2.0",    "require": {        "php": "^7.4||^8.0"    },    "require-dev": {        "phpunit/phpunit": "^5.7||^8.5.13"    },    "autoload": {        "psr-4": {            "Google\\Service\\": "src"        },        "files": [            "autoload.php"        ]    },    "autoload-dev": {        "psr-4": {            "Google\\": "tests/mocks"        }    }}
 |