├── .repo-metadata.json ├── COPYING ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json └── src ├── AccessToken.php ├── ApplicationDefaultCredentials.php ├── Cache ├── FileSystemCacheItemPool.php ├── InvalidArgumentException.php ├── MemoryCacheItemPool.php ├── SysVCacheItemPool.php └── TypedItem.php ├── CacheTrait.php ├── CredentialSource ├── AwsNativeSource.php ├── ExecutableSource.php ├── FileSource.php └── UrlSource.php ├── Credentials ├── AppIdentityCredentials.php ├── ExternalAccountCredentials.php ├── GCECredentials.php ├── IAMCredentials.php ├── ImpersonatedServiceAccountCredentials.php ├── InsecureCredentials.php ├── ServiceAccountCredentials.php ├── ServiceAccountJwtAccessCredentials.php └── UserRefreshCredentials.php ├── CredentialsLoader.php ├── ExecutableHandler ├── ExecutableHandler.php └── ExecutableResponseError.php ├── ExternalAccountCredentialSourceInterface.php ├── FetchAuthTokenCache.php ├── FetchAuthTokenInterface.php ├── GCECache.php ├── GetQuotaProjectInterface.php ├── GetUniverseDomainInterface.php ├── HttpHandler ├── Guzzle6HttpHandler.php ├── Guzzle7HttpHandler.php ├── HttpClientCache.php └── HttpHandlerFactory.php ├── Iam.php ├── IamSignerTrait.php ├── Logging ├── LoggingTrait.php ├── RpcLogEvent.php └── StdOutLogger.php ├── MetricsTrait.php ├── Middleware ├── AuthTokenMiddleware.php ├── ProxyAuthTokenMiddleware.php ├── ScopedAccessTokenMiddleware.php └── SimpleMiddleware.php ├── OAuth2.php ├── ProjectIdProviderInterface.php ├── ServiceAccountSignerTrait.php ├── SignBlobInterface.php ├── UpdateMetadataInterface.php └── UpdateMetadataTrait.php /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.49.0 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/AccessToken.php -------------------------------------------------------------------------------- /src/ApplicationDefaultCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ApplicationDefaultCredentials.php -------------------------------------------------------------------------------- /src/Cache/FileSystemCacheItemPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Cache/FileSystemCacheItemPool.php -------------------------------------------------------------------------------- /src/Cache/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Cache/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Cache/MemoryCacheItemPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Cache/MemoryCacheItemPool.php -------------------------------------------------------------------------------- /src/Cache/SysVCacheItemPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Cache/SysVCacheItemPool.php -------------------------------------------------------------------------------- /src/Cache/TypedItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Cache/TypedItem.php -------------------------------------------------------------------------------- /src/CacheTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CacheTrait.php -------------------------------------------------------------------------------- /src/CredentialSource/AwsNativeSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CredentialSource/AwsNativeSource.php -------------------------------------------------------------------------------- /src/CredentialSource/ExecutableSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CredentialSource/ExecutableSource.php -------------------------------------------------------------------------------- /src/CredentialSource/FileSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CredentialSource/FileSource.php -------------------------------------------------------------------------------- /src/CredentialSource/UrlSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CredentialSource/UrlSource.php -------------------------------------------------------------------------------- /src/Credentials/AppIdentityCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/AppIdentityCredentials.php -------------------------------------------------------------------------------- /src/Credentials/ExternalAccountCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/ExternalAccountCredentials.php -------------------------------------------------------------------------------- /src/Credentials/GCECredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/GCECredentials.php -------------------------------------------------------------------------------- /src/Credentials/IAMCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/IAMCredentials.php -------------------------------------------------------------------------------- /src/Credentials/ImpersonatedServiceAccountCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/ImpersonatedServiceAccountCredentials.php -------------------------------------------------------------------------------- /src/Credentials/InsecureCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/InsecureCredentials.php -------------------------------------------------------------------------------- /src/Credentials/ServiceAccountCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/ServiceAccountCredentials.php -------------------------------------------------------------------------------- /src/Credentials/ServiceAccountJwtAccessCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/ServiceAccountJwtAccessCredentials.php -------------------------------------------------------------------------------- /src/Credentials/UserRefreshCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Credentials/UserRefreshCredentials.php -------------------------------------------------------------------------------- /src/CredentialsLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/CredentialsLoader.php -------------------------------------------------------------------------------- /src/ExecutableHandler/ExecutableHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ExecutableHandler/ExecutableHandler.php -------------------------------------------------------------------------------- /src/ExecutableHandler/ExecutableResponseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ExecutableHandler/ExecutableResponseError.php -------------------------------------------------------------------------------- /src/ExternalAccountCredentialSourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ExternalAccountCredentialSourceInterface.php -------------------------------------------------------------------------------- /src/FetchAuthTokenCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/FetchAuthTokenCache.php -------------------------------------------------------------------------------- /src/FetchAuthTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/FetchAuthTokenInterface.php -------------------------------------------------------------------------------- /src/GCECache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/GCECache.php -------------------------------------------------------------------------------- /src/GetQuotaProjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/GetQuotaProjectInterface.php -------------------------------------------------------------------------------- /src/GetUniverseDomainInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/GetUniverseDomainInterface.php -------------------------------------------------------------------------------- /src/HttpHandler/Guzzle6HttpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/HttpHandler/Guzzle6HttpHandler.php -------------------------------------------------------------------------------- /src/HttpHandler/Guzzle7HttpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/HttpHandler/Guzzle7HttpHandler.php -------------------------------------------------------------------------------- /src/HttpHandler/HttpClientCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/HttpHandler/HttpClientCache.php -------------------------------------------------------------------------------- /src/HttpHandler/HttpHandlerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/HttpHandler/HttpHandlerFactory.php -------------------------------------------------------------------------------- /src/Iam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Iam.php -------------------------------------------------------------------------------- /src/IamSignerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/IamSignerTrait.php -------------------------------------------------------------------------------- /src/Logging/LoggingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Logging/LoggingTrait.php -------------------------------------------------------------------------------- /src/Logging/RpcLogEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Logging/RpcLogEvent.php -------------------------------------------------------------------------------- /src/Logging/StdOutLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Logging/StdOutLogger.php -------------------------------------------------------------------------------- /src/MetricsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/MetricsTrait.php -------------------------------------------------------------------------------- /src/Middleware/AuthTokenMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Middleware/AuthTokenMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/ProxyAuthTokenMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Middleware/ProxyAuthTokenMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/ScopedAccessTokenMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Middleware/ScopedAccessTokenMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/SimpleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/Middleware/SimpleMiddleware.php -------------------------------------------------------------------------------- /src/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/OAuth2.php -------------------------------------------------------------------------------- /src/ProjectIdProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ProjectIdProviderInterface.php -------------------------------------------------------------------------------- /src/ServiceAccountSignerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/ServiceAccountSignerTrait.php -------------------------------------------------------------------------------- /src/SignBlobInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/SignBlobInterface.php -------------------------------------------------------------------------------- /src/UpdateMetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/UpdateMetadataInterface.php -------------------------------------------------------------------------------- /src/UpdateMetadataTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-php/HEAD/src/UpdateMetadataTrait.php --------------------------------------------------------------------------------