withkash/kash-php

Kash API PHP Client

Maintainers

Package info

github.com/withkash/kash_php

Homepage

pkg:composer/withkash/kash-php

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.1.0 2015-08-27 22:07 UTC

This package is not auto-updated.

Last update: 2026-03-19 16:48:17 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);