├── .editorconfig ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json └── src ├── Auth └── AuthService.php ├── AuthenticateService.php ├── ChannelService.php ├── LiveStreamService.php ├── VideoService.php ├── YoutubeLaravelApiServiceProvider.php └── config └── google-config.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/composer.json -------------------------------------------------------------------------------- /src/Auth/AuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/Auth/AuthService.php -------------------------------------------------------------------------------- /src/AuthenticateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/AuthenticateService.php -------------------------------------------------------------------------------- /src/ChannelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/ChannelService.php -------------------------------------------------------------------------------- /src/LiveStreamService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/LiveStreamService.php -------------------------------------------------------------------------------- /src/VideoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/VideoService.php -------------------------------------------------------------------------------- /src/YoutubeLaravelApiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/YoutubeLaravelApiServiceProvider.php -------------------------------------------------------------------------------- /src/config/google-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyguy/YoutubeLaravelApi/HEAD/src/config/google-config.php --------------------------------------------------------------------------------