2017 © Pedro Peláez
 

library usaepay-php

image

nikolaynesov/usaepay-php

  • Monday, April 2, 2018
  • by nikolaynesov
  • Repository
  • 1 Watchers
  • 0 Stars
  • 703 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 18 Forks
  • 0 Open issues
  • 2 Versions
  • 22 % Grown

The README.md

Fork of USAePay's PHP API library

Supports Composer. PSR-4., (*1)

http://www.usaepay.com, (*2)

http://help.usaepay.com/developer/phplibrary, (*3)

SYNOPSIS

The USAePay PHP library is a class for running transactions on the USAePay gateway. Its feature set roughly follows the transaction api. If you are looking for more features, take a look at soap api., (*4)

SUPPORT

If you have any questions on the use of this library, please contact the developer integration support department: devsupport@usaepay.com 866-872-3729 x706, (*5)

For more documentation on using the library, please see http://help.usaepay.com/developer/phplibrary, (*6)

REQUIREMENTS

-PHP 4.3.x or higher (http://www.php.net), (*7)

-HTTPs streams support in PHP or -Curl/ssl module installed (http://curl.haxx.se/), (*8)

VERIFYING INSTALLATION

This package includes a test script "verify_install.php" that can be used to verify that your PHP installation is capable of using this library. Make sure to modify the script to include the correct path to the library. Then place the script in web accessable directiory and access it from a web browser. If any problems are detected, follow the on screen instructions., (*9)

QUICK START

<?php
$tran=new USAePay\umTransaction;
$tran->key="AAAAABBBBBBCCCCCCDDDDDDEEEEEEEE";  
$tran->card="4444555566667779"; 
$tran->exp="1214";
$tran->amount="5.00";
if($tran->process())
{
    echo "Transaction Approved!";
} else {
    echo "Transaction Failed: " . $tran->error;
}

The Versions

02/04 2018

v1.7.1

1.7.1.0

  Sources   Download

09/06 2016

dev-master

9999999-dev

Fork of USAePay's PHP API library that includes composer package support.

  Sources   Download