kayue / kount
PHP library to consume Kount API
Installs: 195
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/kayue/kount
Requires
- guzzlehttp/guzzle: ^6.1
Requires (Dev)
- phpspec/phpspec: ^2.0
This package is auto-updated.
Last update: 2020-12-19 15:02:00 UTC
README
Example
<?php use Kayue\Kount\Kount; require_once dirname(__DIR__) . '/vendor/autoload.php'; $kount = new Kount('API_KEY'); // Get an email's VIP status (approve / decline) $kount->getEmail('someone@example.com')->getResult(); // Update an trasacntion's approve status $kount->updateOrderStatus('TXID', Kount::ORDER_STATUS_APPROVE);