定制 findrow/laravel-usaepay 二次开发

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

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

findrow/laravel-usaepay

最新稳定版本:v3.2.3

Composer 安装命令:

composer require findrow/laravel-usaepay

包简介

A PHP library that allows you to connect to USAePay gateway and run transactions with less configurations needed.

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

Install using composer:

composer require findrow/laravel-usaepay

Add the service provider in app/config/app.php:

PhpUsaepay\ServiceProvider::class,

Configuration

Now publish the configuration files to config/usaepay.php:

$ php artisan vendor:publish

This package supports configuration through the services configuration file located in config/usaepay.php:

Usage

Basic Usage of USAePay:

<?php

$sourcekey = 'your_source_key';
$sourcepin = 'your_source_pin';
$sandbox = true;
$options = [
    'debug' => true,
];

$usaepay = new \PhpUsaepay\Client($sourcekey, $sourcepin, $sandbox, $options);

Example

This package takes care of the creation of ueSecurityToken.

Find CustNum using searchCustomerID method

<?php

$custID = '21021';

$custNum = $usaepay->searchCustomerID($custID);

Reference: https://wiki.usaepay.com/developer/soap-1.6/methods/searchcustomerid

Run sale using runTransaction method

<?php

$request = [
    'Command' => 'sale',
    'AccountHolder' => 'John Doe',
    'Details' => [
      'Description' => 'Example Transaction',
      'Amount' => '4.00',
      'Invoice' => '44539'
    ],
    'CreditCardData' => [
      'CardNumber' => '4444555566667779',
      'CardExpiration' => '0919',
      'AvsStreet' => '1234 Main Street',
      'AvsZip' => '99281',
      'CardCode' => '999'
    ]
];

$result = $usaepay->runTransaction($request);

Reference: https://wiki.usaepay.com/developer/soap-1.6/methods/runtransaction

Refer to this link for the complete lists of methods: http://wiki.usaepay.com/developer/soap-1.6/Support#methods

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-09-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固