kairos / google-analytics-client-bundle
Symfony 2 bundle. Get data from google analytics
Installs: 714
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 0
pkg:composer/kairos/google-analytics-client-bundle
Requires
- php: >=5.4.0
- doctrine/cache: ~1.3
- guzzle/guzzle: ~3.0
- symfony/framework-bundle: ~2.1
Requires (Dev)
- phpunit/phpunit: ~4.2
This package is not auto-updated.
Last update: 2025-09-27 21:31:16 UTC
README

This bundle provides a way to get google analytics data using the certificate-based authentication with google analytics.
Documentation
Bundle setup
Install the bundle via composer :
"require": { ... "kairos/google-analytics-client-bundle": "1.0.0", ... }
Register your bundle in your AppKernel.php
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Kairos\GoogleAnalyticsClientBundle\KairosGoogleAnalyticsClientBundle(), ... ); .... } }
Config for your config.yml :
kairos_google_analytics_client:
gapi_id: xxx
gapi_account: xxx
oauth:
client_email: xxx@xxx
private_key: DIR/xxx.p12
Usage
Todos
- Add Tests
License
Acknowledgements
Thanks to Widop Google Analytics Bundle where i've taken information.