grummfy/stathat-read

Library that helps reading stats from stathat

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/grummfy/stathat-read

0.2.0 2017-09-08 13:37 UTC

This package is auto-updated.

Last update: 2025-09-28 21:49:42 UTC


README

Build Status

Stathat is SaaS stat tracking tool. This small library is here to help read stats from it with PHP.

Usage

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());

Install

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.

Test

vendor/bin/atoum