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

Installs: 8 962

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/signedpay/api

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