opendaje/enola-client

Unofficial Openapi.it api client.

0.1.8 2024-04-04 14:25 UTC

README

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

CD/CI codecov

Unofficial OpenApi.it api client.

⚠ Launching early stage releases (0.x.x) could break the API according to Semantic Versioning 2.0. We are using minor for breaking changes. This will change with the release of the stable 1.0.0 version.

Questa libreria fornisce un'api client per parte delle api di OpenApi.it ( official client )

A differenza del client ufficiale, il client enola è sviluppato sulle specifiche PSR per http, quindi la libreria non viene distribuita con uno specifico http client, ma è compatibile con quelli presenti in questa lista

Servizi/Api supportati

  • Cap
  • Europena Vat
  • Imprese
  • Car

INSTALLAZIONE

composer require opendaje/enola-client

// installa un Http client compatibile con lo standard PSR

composer require http-interop/http-factory-guzzle php-http/guzzle6-adapter

Uso

$token = 'MY_TOKEN';
$isSandbox = true;

$client = new EnolaClient($token, $isSandbox);
$response = $client->api('cap')->getRegioni();
print_r($response);