elliptic / elliptic-sdk
Elliptic SDK for PHP - A Guzzle wrapper for connecting to Elliptic APIs
v0.8.0
2024-11-18 10:16 UTC
Requires
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^10
README
Installation
Composer
composer require elliptic/elliptic-sdk
Usage
The SDK provides an instance of the popular Guzzle HTTP client, adding the necessary steps to authenticate each request using your Elliptic API key and secret.
use Elliptic\AML;
$aml = new AML([
'key' => 'YOUR_ELLIPTIC_API_KEY',
'secret' => 'YOUR_ELLIPTIC_API_SECRET',
]);
// $aml->client is an instance of GuzzleHttp\Client
$response = $aml->client->get('/v2/analyses');
API Documentation
Documentation for Elliptic APIs can be found at the Elliptic Developer Center
License
This SDK is distributed under the Apache License, Version 2.0, see LICENSE and NOTICE for more information.