michaeljdennis / harvest-php
A PHP package for the Harvest API.
dev-master
2023-04-21 00:43 UTC
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-03-21 04:43:24 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.