By endroid
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
.
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\Bundle\GoogleApiBundle\EndroidGoogleApiBundle(),
];
}
endroid_google_api:
application_name: <application name>
api_key: <api key>
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');
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.
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.