trexima/harvey-client

Client for Harvey API v2

Installs: 4 704

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 5

Open Issues: 0

pkg:composer/trexima/harvey-client

1.3.2 2024-11-04 07:26 UTC

This package is auto-updated.

Last update: 2025-10-04 09:38:45 UTC


README

Service for making requests on Harvey API v2.

develop: Build Status main: Build Status

Installation

Installation with Composer:

composer require trexima/harvey-client

Example usage

<?php

require __DIR__.'/../vendor/autoload.php';

$cache = new \Symfony\Component\Cache\Adapter\ArrayAdapter();
$methodPatameterExtractor = new \Trexima\HarveyClient\MethodParameterExtractor($cache);

$harveyClient = new Trexima\HarveyClient\Client('http://127.0.0.1/v2/', 'admin', 'my_password', $methodPatameterExtractor, $cache);

var_dump($harveyClient->searchIsced());
var_dump($harveyClient->getIsced('35'));
var_dump($harveyClient->searchIsco('programator', [5], '251'));
var_dump($harveyClient->searchCpa('ryby'));