定制 strikewood/omnipay-first-atlantic-commerce 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

strikewood/omnipay-first-atlantic-commerce

最新稳定版本:v1.0.0

Composer 安装命令:

composer require strikewood/omnipay-first-atlantic-commerce

包简介

First Atlantic Commerce driver for the Omnipay PHP payment processing library

README 文档

README

First Atlantic Commerce driver for the Omnipay PHP payment processing library

Source Code Latest Version Software License

Build Status Scrutinizer Code Quality Code Coverage Total Downloads

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements First Atlantic Commerce support for Omnipay.

Installation

Omnipay is installed via Composer. To install, simply add it to your composer.json file and update or install directly with composer require:

$ php composer.phar require strikewood/omnipay-first-atlantic-commerce:dev-master

This package strives to use Semantic Versioning as explained here.

Basic Usage

The following gateways are provided by this package:

  • FirstAtlanticCommerce

This package implements the following methods:

  • authorize($options) – authorize an amount on the customer’s card.
  • capture($options) – capture an amount you have previously authorized.
  • purchase($options) – authorize and immediately capture an amount on the customer’s card.
  • refund($options) – refund an already processed (settled) transaction.
  • void($options) – reverse a previously authorized (unsettled) transaction.
  • status($options) – check the status of a previous transaction.
  • createCard($options) – create a stored card and return the reference token for future transactions.
  • updateCard($options) – update a stored card's expiry or customer reference.

For general usage instructions, please see the Omnipay documentation. For information on the parameters needed for each request, see the class documentation for that request in the Message folder.

Basic Example

use Omnipay\Omnipay;

// Setup payment gateway
$gateway = Omnipay::create('FirstAtlanticCommerce');
$gateway->setMerchantId('123456789');
$gateway->setMerchantPassword('abc123');

// Example form data
$formData = [
    'number'      => '4242424242424242',
    'expiryMonth' => '6',
    'expiryYear'  => '2016',
    'cvv'         => '123'
];

// Send purchase request
$response = $gateway->purchase([
    'amount'        => '10.00',
    'currency'      => 'USD',
    'transactionId' => '1234',
    'card'          => $formData
])->send();

// Process response
if ( $response->isSuccessful() )
{
    // Payment was successful
    print_r($response);
}
else
{
    // Payment failed
    echo $response->getMessage();
}

Support

If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

统计信息

  • 总下载量: 1.9k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 11
  • Forks: 24
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-03-11