endroid / google-api-bundle
Endroid Google API for Symfony
Installs: 2 125
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- google/apiclient: ^1.0
Requires (Dev)
- phpunit/phpunit: ^5.7|^6.0
README
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
.
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.