mraiur/laravel-mgoogle

22
Install
composer require mraiur/laravel-mgoogle
Latest Version:v0.0.1
License:MIT
Last Updated:Jul 11, 2015
Links: GitHub  ·  Packagist
Maintainer: mraiur

mgoogle

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