xotelia/streak-php-client

Streak PHP client

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.0.4 2016-04-04 08:29 UTC

README

Build Status Latest Stable Version Total Downloads License Scrutinizer Code Quality

Simple PHP client for Streak API

Installation

$ composer require xotelia/streak-php-client

Usage

<?php

require __DIR__.'/vendor/autoload.php';

use Streak\Streak;

$apiKey = 'your api key';
$streak = new Streak($apiKey);
$me = $streak->users()->me();