├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Exception └── HostedDomainException.php └── Provider ├── Google.php └── GoogleUser.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exception/HostedDomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/src/Exception/HostedDomainException.php -------------------------------------------------------------------------------- /src/Provider/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/src/Provider/Google.php -------------------------------------------------------------------------------- /src/Provider/GoogleUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-google/HEAD/src/Provider/GoogleUser.php --------------------------------------------------------------------------------