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

Maintainers

Details

github.com/kayue/kount

Source

Issues

Installs: 195

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kayue/kount

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