michaeljdennis/harvest-php

A PHP package for the Harvest API.

dev-master 2023-04-21 00:43 UTC

This package is auto-updated.

Last update: 2024-04-21 02:41:32 UTC


README

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.