michaeljdennis / harvest-php
A PHP package for the Harvest API.
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/michaeljdennis/harvest-php
Requires
- php: ^7.2
- guzzlehttp/guzzle: ^6.3
- vlucas/phpdotenv: ^3.3
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-09-21 05:38:21 UTC
README
A PHP package for the Harvest API.
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.