2017 © Pedro Peláez
 

library laravel-autodrive

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

image

adexaja/laravel-autodrive

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

  • Wednesday, January 18, 2017
  • by adexaja
  • Repository
  • 1 Watchers
  • 0 Stars
  • 17 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 12 Versions
  • 0 % Grown

The README.md

Google Api Client Wrapper

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

Build Status Scrutinizer Code Quality Coverage Status License Latest Version Total Downloads, (*2)

Requirements

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

Installation

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

"require": {
    "adexaja/laravel-autodrive": "3.*"
}

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

Or use composer require adexaja/laravel-autodrive, (*6)

Laravel

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

PulkitJalan\Google\GoogleServiceProvider::class

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

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

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

Looking for a Laravel 4 compatible version?

Checkout the 1.0 branch, (*10)

Usage

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

return [
    /*
    |----------------------------------------------------------------------------
    | Google application name
    |----------------------------------------------------------------------------
    */
    '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' => '',
    'client_secret' => '',
    'redirect_uri' => '',
    'scopes' => [],
    'access_type' => 'online',
    'approval_prompt' => 'auto',

    /*
    |----------------------------------------------------------------------------
    | 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' => '',

    /*
    |----------------------------------------------------------------------------
    | 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.
        */
        'enabled' => false,

        /*
        | Path to service account json file
        */
        'file' => '',
    ],
];

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., (*12)

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

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

Get Google_Client, (*15)

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

Laravel Example:, (*16)

$googleClient = Google::getClient();

Get a service, (*17)

$client = new PulkitJalan\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:, (*18)

// 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., (*19)

The Versions

18/01 2017

dev-master

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

by Rezki Nasrullah

laravel google cloud platform

07/01 2017

3.0.x-dev

3.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

by Rezki Nasrullah

laravel google cloud platform

07/01 2017

dev-develop

dev-develop https://github.com/adexaja/laravel-autodrive

Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support With Auto Refresh Token

  Sources   Download

MIT

The Requires

 

The Development Requires

by Rezki Nasrullah

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