2017 © Pedro Peláez
 

library google-apiclient

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

image

pulkitjalan/google-apiclient

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

  • Thursday, August 24, 2017
  • by pulkitjalan
  • Repository
  • 6 Watchers
  • 106 Stars
  • 145,698 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 37 Forks
  • 9 Open issues
  • 15 Versions
  • 16 % Grown

The README.md

Google Api Client Wrapper

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

Latest Stable Version MIT License Run Tests Coverage Total Downloads, (*2)

Requirements

  • PHP >=8.0

Installation

Install via composer, (*3)

composer require pulkitjalan/google-apiclient

Laravel

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

PulkitJalan\Google\GoogleServiceProvider::class

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

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

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

Using an older version of PHP / Laravel?

If you are on a PHP version below 8.0 or a Laravel version below 10.0, use an older version of this package., (*7)

Usage

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

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',
    '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' => '',
    ],

    /*
    |----------------------------------------------------------------------------
    | Additional config for the Google Client
    |----------------------------------------------------------------------------
    |
    | Set any additional config variables supported by the Google Client
    | Details can be found here:
    | https://github.com/google/google-api-php-client/blob/master/src/Google/Client.php
    |
    | NOTE: If client id is specified here, it will get over written by the one above.
    |
    */
    'config' => [],
];

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

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

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

Get Google\Client, (*12)

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

Laravel Example:, (*13)

$googleClient = Google::getClient();

Get a service, (*14)

$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:, (*15)

// returns instance of \Google\Service\Storage
$storage = Google::make('storage');
// or
$storage = Google::make(\Google\Service\Storage::class);

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

The Versions

24/08 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

laravel google cloud platform

24/08 2017

3.1.4

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

23/04 2017

3.1.3

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

24/03 2017

3.1.2

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

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