Stathat is SaaS stat tracking tool. This small library is here to help read stats from it with PHP.
use Grummfy\StatHat;
use Grummfy\Stathat\HTTPAdapter\GuzzleAdapter;
use GuzzleHttp\Client;
$stathatToken = 'ABC123'; // get it from https://www.stathat.com/access
$adapter = new GuzzleAdapter($client);
$stathat = new Grummfy\StatHat($adapter, $stathatToken);
var_dump($stathat->listAllStats());
composer require grummfy/stathat-read
composer require guzzlehttp/guzzle
By default, this library came with an implementation of the AdapterInterface made for Guzzle. If, for any reason, you don't want to use guzzle, just implements a new AdapterInterface.
vendor/bin/atoum