kuusamo / api
Kuusamo API client
2.3.0
2023-03-17 18:58 UTC
Requires
- php: >=7.3.0
- kriswallsmith/buzz: 1.*
- nyholm/psr7: 1.*
Requires (Dev)
- dg/bypass-finals: 1.*
- phpunit/phpunit: 9.*
- squizlabs/php_codesniffer: 3.*
README
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!