kyash / api
Integrate with the Kyash Payment Gateway.
v1.0.0
2015-05-09 13:50 UTC
Requires
- php: >=5.4.0
- ext-curl: *
This package is not auto-updated.
Last update: 2025-07-19 21:47:09 UTC
README
PHP library to access the Kyash Payment Gateway API.
Usage
Install the latest version with composer require kyash/api
use Kyash\Collection; // Get the Kyash Credentials from your Kyash Account API Settings. There is a separate set of credentials for production and development environments. $kyash = Collection('public_api_id', 'api_secret'); $kyash_code = $kyash->getKyashCode('T12345678'); if ($kyash_code['status'] === 'paid') { $kyash->capture($kyash_code['id']); }
Please refer to the Kyash Merchant API documentation for more details about the request parameters and response. All functions in this library take an array of request parameters of their corresponding API call and return an array representing the JSON response of the API.