ahonymous / timezone-bundle
The Symfony2 bundle to Google Timezone API
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
pkg:composer/ahonymous/timezone-bundle
Requires
- php: >=5.5
- guzzle/guzzle: ~3.9
- symfony/symfony: 2.5.*
Requires (Dev)
- phpunit/phpunit: ~4.3
This package is not auto-updated.
Last update: 2025-10-07 07:32:45 UTC
README
The bundle of timezone name for Google Timezone API.
Instalion
Composer
php composer.phar require ahonymous/timezone-bundle
AppKernel
Include the bundle in your AppKernel
public function registerBundles()
{
$bundles = array(
...
new Ahonymous\TimezoneBundle\AhonymousTimezoneBundle(),
);
...
return $bundles;
}
Configuration
Your configuration should be something like this
ahonymous_timezone:
api_key: <GOOGLE_API_KEY>
url: "https://maps.googleapis.com"