kuusamo/api

Kuusamo API client

2.3.0 2023-03-17 18:58 UTC

This package is auto-updated.

Last update: 2024-04-17 21:22:25 UTC


README

Latest Stable Version Total Downloads License Build Status

This library is designed to integrate into your existing application to allow you to talk to your Kuusamo instance.

Install it:

composer require kuusamo/api

Use it:

$client = Kuusamo\Api\ClientFactory::create(
    'example-key',
    'example-secret',
    'https://example.com/api'
);

$response = $client->get('/test');

Enjoy!