digistorm/omnipay-mpgs
最新稳定版本:2.0.0
Composer 安装命令:
composer require digistorm/omnipay-mpgs
包简介
Mastercard Payment Gateway Service (MPGS) driver for the Omnipay payment processing library
README 文档
README
MPGS Rest API v56 driver for the Omnipay PHP payment processing library
MPGS Rest API: https://test-gateway.mastercard.com/api/documentation/integrationGuidelines/index.html?locale=en_US
Currently only supports purchases with one available method:
- purchase()
Usage
<?php use Omnipay\Omnipay; use Omnipay\Common\CreditCard; // Create a gateway for the Mpgs Gateway // (routes to GatewayFactory::create) /* @var \Omnipay\Mpgs\Gateway $gateway */ $gateway = Omnipay::create('Mpgs'); $gateway->setTestMode(true); $gateway->setEndpointBase('https://test-gateway.mastercard.com'); $gateway->setMerchantId('merchantIdValue'); $gateway->setPassword('passwordValue'); // Charge using a card /* @var \Omnipay\Mpgs\Message\PurchaseResponse $response */ $response = $gateway->purchase([ 'card' => new CreditCard([ 'number' => '5111111111111118', 'cvv' => '100', 'expiryMonth' => '05', 'expiryYear' => '2021', 'firstName' => 'John', 'lastName' => 'Doe', ]), 'amount' => '50.00', 'currency' => 'AUD', 'description' => 'Merchant Reference', ])->send();
统计信息
- 总下载量: 4.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-22