solarios / google
Google API bridge for Laravel 5
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/solarios/google
Requires
- php: >=5.5.9
- google/apiclient: ^1.1
- graham-campbell/manager: ^2.3
This package is not auto-updated.
Last update: 2025-10-12 01:02:49 UTC
README
A laravel wrapper for Google's API. It uses Laravel Manager as it's base.
Installation
Require it with Composer by running
composer require solarios/google
Add the following to the service providers in config/app.php
.
Solarios\Google\GoogleServiceProvider::class,
There is also a facade available.
'Google' => Solarios\Google\Facades\Google::class,
To publish the configuration file, run
php artisan vendor:publish
Usage
Only the application authentication is currently supported (service provider/account).
Examples
$calendar = Google::calendar();
Returns the Google_Service_Calendar
class.
$calendarList = $calendar->calendarList->listCalendarList();
Gets a list of calendars.