kayue/kount

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

PHP library to consume Kount API

dev-master 2016-01-25 02:30 UTC

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);