prettus/tinyerp-client

There is no license information available for the latest version (0.0.22) of this package.

Tiny ERP Api v2 Client

Installs: 90

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/prettus/tinyerp-client

0.0.22 2024-08-11 20:22 UTC

This package is auto-updated.

Last update: 2025-09-11 22:50:20 UTC


README

$client = new Client('token');

$retorno = $client->info()->get();
$entity = $retorno->data();
echo $entity->razao_social;
$retorno = $client->produto()->retrieve(349112581);
$entity = $retorno->data();
echo $entity->nome;