Skip to content
This repository has been archived by the owner on Jan 7, 2018. It is now read-only.

abandroid/google-api-bundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google API Bundle

By endroid

Latest Stable Version Build Status Total Downloads Monthly Downloads License

This bundle provides easy integration with google/google-api-php-client which allows you to access different Google API's. For more information visit the developer documentation.

knpbundles.com

Installation

Use Composer to install the bundle.

$ composer require endroid/google-api-bundle

Then enable the bundle via the kernel.

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new Endroid\GoogleApiBundle\EndroidGoogleApiBundle(),
    ];
}

Configuration

config.yml

endroid_google_api:
    application_name: <application name>
    api_key: <api key>
        

Usage

After installation and configuration, the Google API client can be used to access the desired API.

$client = $this->get('endroid.google_api_client');
$service = new Google_Service_Translate($client);

$translations = $service->translations->listTranslations('Hello', 'fr');

Versioning

Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility breaking changes will be kept to a minimum but be aware that these can occur. Lock your dependencies for production and test your code when upgrading.

License

This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code.