joaofigueira / analytics
Retrieve analytics data
v2.0.0
2014-11-14 11:57 UTC
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-12-17 02:54:49 UTC
README
Reports analytics data.
Currently working with Piwik.
Installation via composer
{
require: {
"joaofigueira/analytics": "2.*"
}
}
Usage example
<?php use Analytics\DataSources\Piwik; use Analytics\Querys\Browsers as Analytics; //check out the Querys folder, lots of ready to use Querys in there! $auth = new Piwik($url, $token, $idSite); //engine(Piwik), url, token, idSite $result = new Analytics($auth); $result ->startDate('2014-10-01') ->endDate('2014-10-15'); $analyticsData = $result->fetchData(); $analyticsgraph = $result->fetchGraph();
Extending
<?php use Analytics\Analytics; class NewExtension extends Analytics { //here you can write your own code to query the API }