mraiur/laravel-mgoogle

v0.0.1 2015-07-11 23:29 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:37:14 UTC


README

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 :

Project page MGoogle Package