Skip to content

michaeljdennis/harvest-php

Repository files navigation

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.

Releases

No releases published

Packages

No packages published

Languages