withkash/kash-php

Kash API PHP Client

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/withkash/kash-php

0.1.0 2015-08-27 22:07 UTC

This package is not auto-updated.

Last update: 2025-10-30 15:06:19 UTC


README

Include via Composer:

"require": {
    "kash/kash-php": "*"
}

Documentation

Documentation is available at http://docs.withkash.com.

Tutorial

<?php

require __DIR__ . '/vendor/autoload.php';

use Kash\Kash;

Kash::setApiKey('sk_test_b746ab1e46e0d0fff0f62912ede52c52');
$customerId = "dce5d71e-0ba5-4114-b9d2-9644056a77ce";
$result = Kash::authorizeAmount($customerId, 2000);
print($result->authorization_id);