2017 © Pedro Peláez
 

library google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

image

pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  • Thursday, March 8, 2018
  • by pmmotors
  • Repository
  • 0 Watchers
  • 0 Stars
  • 69 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 36 Forks
  • 0 Open issues
  • 17 Versions
  • 13 % Grown

The README.md

Google Api Client Wrapper

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support, (*1)

Requirements

This package requires PHP >=5.4, (*2)

Installation

Install via composer - edit your composer.json to require the package., (*3)

"require": {
    "pmmotors/google-apiclient": "3.*"
}

Then run composer update in your terminal to pull it in., (*4)

Or use composer require pmmotors/google-apiclient, (*5)

Laravel

To use in laravel add the following to the providers array in your config/app.php, (*6)

PmMotors\Google\GoogleServiceProvider::class

Next add the following to the aliases array in your config/app.php, (*7)

'Google' => PmMotors\Google\Facades\Google::class

Finally run php artisan vendor:publish --provider="PmMotors\Google\GoogleServiceProvider" --tag="config" to publish the config file., (*8)

Looking for a Laravel 4 compatible version?

Checkout the 1.0 branch, (*9)

Usage

The Client class takes an array as the first parameter, see example of config file below:, (*10)

<?php

return [
    /*
    |----------------------------------------------------------------------------
    | Google application name
    |----------------------------------------------------------------------------
    */
    'application_name' => env('GOOGLE_APPLICATION_NAME', ''),

    /*
    |----------------------------------------------------------------------------
    | Google OAuth 2.0 access
    |----------------------------------------------------------------------------
    |
    | Keys for OAuth 2.0 access, see the API console at
    | https://developers.google.com/console
    |
    */
    'client_id'       => env('GOOGLE_CLIENT_ID', ''),
    'client_secret'   => env('GOOGLE_CLIENT_SECRET', ''),
    'redirect_uri'    => env('GOOGLE_REDIRECT', ''),
    'scopes'          => array('https://www.googleapis.com/auth/analytics.readonly'), //[],
    'access_type'     => 'offline', //'online',
    'approval_prompt' => 'auto',
    'refresh_token'   => env('GOOGLE_REFRESH_TOKEN', ''),
    /*
    |----------------------------------------------------------------------------
    | Google developer key
    |----------------------------------------------------------------------------
    |
    | Simple API access key, also from the API console. Ensure you get
    | a Server key, and not a Browser key.
    |
    */
    'developer_key' => env('GOOGLE_DEVELOPER_KEY', ''),

    /*
    |----------------------------------------------------------------------------
    | Google service account
    |----------------------------------------------------------------------------
    |
    | Set the credentials JSON's location to use assert credentials, otherwise
    | app engine or compute engine will be used.
    |
    */
    'service' => [
        /*
        | Enable service account auth or not.
        */
        'enable' => env('GOOGLE_SERVICE_ENABLED', false),

        /*
        | Path to service account json file
        */
        'file' => env('GOOGLE_SERVICE_ACCOUNT_JSON_LOCATION', '')
    ],
];


To use Google Cloud Platform services, enter the location to the service account JSON file (not the JSON string itself). To use App Engine or Computer Engine, leave it blank., (*11)

From Google's upgrading document:, (*12)

Note: P12s are deprecated in favor of service account JSON, which can be generated in the Credentials section of Google Developer Console., (*13)

Get Google_Client, (*14)

$client = new PmMotors\Google\Client($config);
$googleClient = $client->getClient();

Laravel Example:, (*15)

$googleClient = Google::getClient();

Get a service, (*16)

$client = new PmMotors\Google\Client($config);

// returns instance of \Google_Service_Storage
$storage = $client->make('storage');

// list buckets example
$storage->buckets->listBuckets('project id');

// get object example
$storage->objects->get('bucket', 'object');

Laravel Example:, (*17)

// returns instance of \Google_Service_Storage
$storage = Google::make('storage');

// list buckets example
$storage->buckets->listBuckets('project id');

// get object example
$storage->objects->get('bucket', 'object');

Have a look at google/google-api-php-client-services to get a full list of the supported Google Services., (*18)

http://dealersite.loc/, (*19)

The Versions

08/03 2018

dev-master

9999999-dev https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

08/03 2018

3.1.6

3.1.6.0 https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

08/03 2018

3.1.5

3.1.5.0 https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

08/02 2017

3.1.4

3.1.4.0 https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

08/02 2017

3.1.3

3.1.3.0 https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

08/02 2017

3.1.2

3.1.2.0 https://github.com/pmmotors/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pixel Motion

laravel google cloud platform

30/01 2017

3.1.1

3.1.1.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

29/01 2017

3.1.0

3.1.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

20/07 2016

3.0.0

3.0.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

29/10 2015

2.0.x-dev

2.0.9999999.9999999-dev https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

29/10 2015

2.0.2

2.0.2.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

15/09 2015

2.0.1

2.0.1.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

08/08 2015

2.0

2.0.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

08/08 2015

1.0.x-dev

1.0.9999999.9999999-dev https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

08/08 2015

1.0

1.0.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

02/08 2015

0.2.0

0.2.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform

25/01 2015

0.1.0

0.1.0.0 https://github.com/pulkitjalan/google-apiclient

Google api php client wrapper with Cloud Platform and Laravel support

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel google cloud platform