├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json └── src ├── AccessToken ├── Revoke.php └── Verify.php ├── AuthHandler ├── AuthHandlerFactory.php ├── Guzzle6AuthHandler.php └── Guzzle7AuthHandler.php ├── Client.php ├── Collection.php ├── Exception.php ├── Http ├── Batch.php ├── MediaFileUpload.php └── REST.php ├── Model.php ├── Service.php ├── Service ├── Exception.php ├── README.md └── Resource.php ├── Task ├── Composer.php ├── Exception.php ├── Retryable.php └── Runner.php ├── Utils └── UriTemplate.php └── aliases.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/composer.json -------------------------------------------------------------------------------- /src/AccessToken/Revoke.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/AccessToken/Revoke.php -------------------------------------------------------------------------------- /src/AccessToken/Verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/AccessToken/Verify.php -------------------------------------------------------------------------------- /src/AuthHandler/AuthHandlerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/AuthHandler/AuthHandlerFactory.php -------------------------------------------------------------------------------- /src/AuthHandler/Guzzle6AuthHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/AuthHandler/Guzzle6AuthHandler.php -------------------------------------------------------------------------------- /src/AuthHandler/Guzzle7AuthHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/AuthHandler/Guzzle7AuthHandler.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Http/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Http/Batch.php -------------------------------------------------------------------------------- /src/Http/MediaFileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Http/MediaFileUpload.php -------------------------------------------------------------------------------- /src/Http/REST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Http/REST.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Service.php -------------------------------------------------------------------------------- /src/Service/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Service/Exception.php -------------------------------------------------------------------------------- /src/Service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Service/README.md -------------------------------------------------------------------------------- /src/Service/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Service/Resource.php -------------------------------------------------------------------------------- /src/Task/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Task/Composer.php -------------------------------------------------------------------------------- /src/Task/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Task/Exception.php -------------------------------------------------------------------------------- /src/Task/Retryable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Task/Retryable.php -------------------------------------------------------------------------------- /src/Task/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Task/Runner.php -------------------------------------------------------------------------------- /src/Utils/UriTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/Utils/UriTemplate.php -------------------------------------------------------------------------------- /src/aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-api-php-client/HEAD/src/aliases.php --------------------------------------------------------------------------------