| Package Data | |
|---|---|
| Maintainer Username: | thujohn |
| Maintainer Contact: | jonathan.thuau@gmail.com (Jonathan Thuau) |
| Package Create Date: | 2013-06-20 |
| Package Last Update: | 2015-09-11 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 03:03:21 |
| Package Statistics | |
|---|---|
| Total Downloads: | 108,586 |
| Monthly Downloads: | 2 |
| Daily Downloads: | 0 |
| Total Stars: | 111 |
| Total Watchers: | 16 |
| Total Forks: | 31 |
| Total Open Issues: | 21 |
Port of Laravel 3 bundle lordcoste/analytics-s2s for Laravel 4
Add thujohn/analytics to composer.json.
"thujohn/analytics": "dev-master"
Run composer update to pull down the latest version of Analytics.
Now open up app/config/app.php and add the service provider to your providers array.
'providers' => array(
'Thujohn\Analytics\AnalyticsServiceProvider',
)
Now add the alias.
'aliases' => array(
'Analytics' => 'Thujohn\Analytics\AnalyticsFacade',
)
Run php artisan config:publish thujohn/analytics and modify the config file with your own informations.
Querying the API for visits and pageviews in the last week.
More information about this calling the Google Analytics API can be found here https://developers.google.com/apis-explorer/#s/analytics/v3/analytics.data.ga.get A list of all Google Analytics metrics can be found here https://developers.google.com/analytics/devguides/reporting/core/dimsmets
$site_id = Analytics::getSiteIdByUrl('http://github.com/'); // return something like 'ga:11111111'
$stats = Analytics::query($site_id, '7daysAgo', 'yesterday', 'ga:visits,ga:pageviews');