Google API
A laravel wrapper for Google's API. It uses Laravel Manager as it's base., (*1)
Installation
Require it with Composer by running, (*2)
composer require solarios/google
Add the following to the service providers in config/app.php., (*3)
Solarios\Google\GoogleServiceProvider::class,
There is also a facade available., (*4)
'Google' => Solarios\Google\Facades\Google::class,
To publish the configuration file, run, (*5)
php artisan vendor:publish
Usage
Only the application authentication is currently supported (service provider/account)., (*6)
Examples
$calendar = Google::calendar();
Returns the Google_Service_Calendar class., (*7)
$calendarList = $calendar->calendarList->listCalendarList();
Gets a list of calendars., (*8)