Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.31 KB

README.md

File metadata and controls

46 lines (32 loc) · 1.31 KB

Harvest PHP

A PHP package for the Harvest API.

Maintainability CircleCI StyleCI PHP from Packagist Packagist GitHub

Installation

composer require michaeljdennis/harvest-php

Usage

Plain PHP

use Harvest\Harvest;
use Harvest\Client;
use GuzzleHttp\Client as HttpClient;

$harvest = new Harvest(
    new Client(
        new HttpClient()
    )
);

$harvest->projects->get();

Laravel

use Harvest;

Harvest::projects()->get();

Roadmap

Check here for the current list of tasks.