gentor/omnipay-epay
Composer 安装命令:
composer require gentor/omnipay-epay
包简介
Epay Bg gateway for Omnipay payment processing library
README 文档
README
ePay.bg driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Epay, EasyPay, Bpay and more Bugarian online payment providers support for Omnipay.
Installation
Omnipay is installed via Composer. To install, simply run:
composer require gentor/omnipay-epay
The following gateways are provided by this package:
For general usage instructions, please see the main Omnipay repository.
Basic Usage
Purchase
use Omnipay\Omnipay; $provider = Epay; # Or Easypay $gateway = Omnipay::create($provider); $gateway->setMin('Epay Merchant Id'); $gateway->setSignature('Epay Signature'); $response = $gateway->purchase( [ 'amount' => '10.00', // BGN 'transactionId' => 'Unique ID in your system', 'returnUrl' => 'your.site.com/return', 'cancelUrl' => 'your.site.com/cancel', ] )->send(); if ($response->isSuccessful()) { // only EasyPay get IDN echo($response->getRedirectData()); } elseif ($response->isRedirect()) { // redirect to epay payment gateway $response->redirect(); } else { // payment failed: display message to customer echo $response->getMessage(); }
Webhook
- Listener for payment status
//Use only epay gateway $gateway = Omnipay::create('Epay'); $gateway->setMin('Epay Merchant Id'); $gateway->setSignature('Epay Signature'); $response = $gateway->acceptNotification()->send(); if ($response->isSuccessful()) { $status = $response->getTransactionStatus(); // Response is required for epay gateway to stop sending data echo $response->getData()['notify_text']; } else { // Response is required for epay gateway to stop sending data echo $response->getData()['notify_text']; }
ePay.bg Documentation
统计信息
- 总下载量: 6.77k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-10