This package is abandoned and no longer maintained. The author suggests using the solidgate/php-sdk package instead.

Php API SDK for Signedpay payment gateway

v1.1 2016-02-27 09:18 UTC

This package is not auto-updated.

Last update: 2020-02-04 14:02:55 UTC


README

This library provides basic API options of SignedPay payment gateway.

Installation

With Composer

$ composer require signedpay/api
{
    "require": {
        "signedpay/api": "~1.0"
    }
}

Usage

<?php

use Signedpay\API\Api;

$api = new Api('YourMerchantId', 'YourPrivateKey');

$response = $api->charge(['SomePaymentAttributes from API reference']);