| Package Data | |
|---|---|
| Maintainer Username: | mraiur |
| Maintainer Contact: | mraiur@gmail.com (Nikolai Ivanov) |
| Package Create Date: | 2015-07-09 |
| Package Last Update: | 2015-07-11 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-29 15:00:20 |
| Package Statistics | |
|---|---|
| Total Downloads: | 22 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Laravel wrapper for MGoogle package.
Setup:
Add to your providers array in config/app.php
MGoogleLaravel\MGoogleServiceProvider::class,
Run vendor:publish to generate the app/mgoogle.php configuration file.
php artisan vendor:publish
This package simplifies the Google API usage to:
$MGAPI = new MGAPI();
if( $MGAPI ) {
$CalendarAPI = $MGAPI->calendar();
$calendars = $CalendarAPI->getCalendars();
}
More in :