A PHP package for the Harvest API.
composer require michaeljdennis/harvest-php
use Harvest\Harvest;
use Harvest\Client;
use GuzzleHttp\Client as HttpClient;
$harvest = new Harvest(
new Client(
new HttpClient()
)
);
$harvest->projects->get();
use Harvest;
Harvest::projects()->get();
Check here for the current list of tasks.