承接 bigfish/paymentgateway-php7-sdk 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

bigfish/paymentgateway-php7-sdk

最新稳定版本:3.21.0

Composer 安装命令:

composer require bigfish/paymentgateway-php7-sdk

包简介

BIG FISH Payment Gateway - PHP7 SDK

README 文档

README

Repository github.com/bigfish-hu/payment-gateway-php7-sdk (bigfish/paymentgateway-php7-sdk) is abandoned, you should avoid using it.

Use https://github.com/pmgw-hu/payment-gateway-php7-sdk (pmgw/payment-gateway-php7-sdk) instead.

BIG FISH Payment Gateway - PHP7 SDK

Version

3.21.0

Requirements

  • PHP 7.2
  • PHP cURL extension
  • PHP OpenSSL extension
  • PHP JSON extension

Installation

BIG FISH Payment Gateway is available at packagist.org, so you can use composer to download this library.

{ "require": { "bigfish/paymentgateway-php7-sdk": "3.*" } }

or run

composer require bigfish/paymentgateway-php7-sdk

Technical documentation

https://docs.paymentgateway.hu/

Source code

https://github.com/bigfish-hu/payment-gateway-php7-sdk

Example usage

Basic configuration

$config = new \BigFish\PaymentGateway\Config(); $config->storeName = "example store name"; $config->apiKey = "ExamPleApiKey"; $config->encryptPublicKey = "publicKeyGoesHere"; $config->testMode = true; $paymentGateway = new \BigFish\PaymentGateway($config);

Init request

$init = new \BigFish\PaymentGateway\Request\Init(); $init->setProviderName(\BigFish\PaymentGateway::PROVIDER_CIB) // the chosen payment method ->setResponseUrl('http://your.companys.webshop.url/payment_gateway_response') // callback url ->setAmount(1234) ->setCurrency('HUF') ->setOrderId('ORD-1234') // your custom order id ->setUserId('USER-1234') // your custom user id ->setLanguage('HU'); $response = $paymentGateway->send($init);

Start request

if (!$response->ResultCode == "SUCCESSFUL" || !$response->TransactionId) { // handle error here } $paymentGateway->send( (new \BigFish\PaymentGateway\Request\Start())->setTransactionId($response->TransactionId) );

Result request

$result = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\Result())->setTransactionId($_GET['TransactionId']) );

Details request

$details = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\Details())->setTransactionId($_GET['TransactionId']) );

Close request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\Close())->setTransactionId($transactionId) );

Refund request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\Refund()) ->setTransactionId($transactionId) ->setAmount(100) );

Payout request

$payout = new \BigFish\PaymentGateway\Request\Payout(); $payout->setPayoutType(\BigFish\PaymentGateway::PAYOUT_TYPE_FUNDS_DISBURSEMENT) ->setReferenceTransactionId("783593c87fee4d372f47f53840028682") ->setAmount(200) ->setOrderId("BF-TEST-ORDER-REG") // your custom order id ->setAdditionalMessage("BF-TEST-PAYOUT-MESSAGE"); $response = $paymentGateway->send($payout);

Cancel payment registration request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\CancelPaymentRegistration())->setTransactionId($transactionId) );

Cancel all payment registrations request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\CancelAllPaymentRegistrations()) ->setProviderName(\BigFish\PaymentGateway::PROVIDER_BORGUN2) ->setUserId('userId') );

Init Recurring Payment - InitRP

$initRP = new \BigFish\PaymentGateway\Request\InitRP(); $initRP->setReferenceTransactionId("783593c87fee4d372f47f53840028682") ->setResponseUrl("http://your.companys.webshop.url/payment_gateway_response") // callback url ->setAmount(200) ->setCurrency("HUF") ->setOrderId("BF-TEST-ORDER-REG") // your custom order id ->setUserId("BF-TEST-USER-REG"); $response = $paymentGateway->send($initRP);

StartRP request

if (!$response->ResultCode == "SUCCESSFUL" || !$response->TransactionId) { // handle error here } $result = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\StartRP())->setTransactionId($response->TransactionId) );

Create Payment Link - PaymentLinkCreate

$paymentLink = new \BigFish\PaymentGateway\Request\PaymentLinkCreate(); $paymentLink->setProviderName(\BigFish\PaymentGateway::PROVIDER_CIB) // the chosen payment method ->setAmount(1234) ->setCurrency('HUF') ->setOrderId('ORD-1234') // your custom order id ->setUserId('USR-1234') // your customer id ->setLanguage('HU'); $response = $paymentGateway->send($paymentLink);

Cancel request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\PaymentLinkCancel())->setPaymentLinkName($paymentLinkName) );

Details request

$response = $paymentGateway->send( (new \BigFish\PaymentGateway\Request\PaymentLinkDetails())->setPaymentLinkName($paymentLinkName) );

Info data

Basic usage

$infoObject = new \BigFish\PaymentGateway\Data\Info(); $infoCustomerGeneral = new \BigFish\PaymentGateway\Data\Info\Customer\InfoCustomerGeneral(); $infoCustomerGeneral->setFirstName("John") ->setLastName("Doe") ->setEmail("test@testmail.com"); $infoObject->setObject($infoCustomerGeneral); //add $infoCustomerGeneral to $infoObject $infoShipping = new \BigFish\PaymentGateway\Data\Info\Order\InfoOrderShippingData(); $infoShipping->setFirstName("John") ->setLastName("Doe") ->setEmail("test@testmail.com") ->setPhoneCc("36") ->setPhone("801234567") ->setCity("Budapest"); $infoObject->setObject($infoShipping); //add $infoShipping to $infoObject $infoOrderProductItem = new \BigFish\PaymentGateway\Data\Info\Order\InfoOrderProductItem(); $infoOrderProductItem->setSku("PMG055005") ->setName("Product11") ->setQuantity("10") ->setQuantityUnit("db") ->setUnitPrice("22.00") ->setImageUrl("http://webhsop/product11.jpg") ->setDescription("Product11 desc."); $infoObject->setObject($infoOrderProductItem); //add $infoOrderProductItem to $infoObject $infoOrderProductItem = new \BigFish\PaymentGateway\Data\Info\Order\InfoOrderProductItem(); $infoOrderProductItem->setSku("PMG055008") ->setName("Product12") ->setQuantity("10") ->setQuantityUnit("db") ->setUnitPrice("22.00") ->setImageUrl("http://webhsop/product12.jpg") ->setDescription("Product12 desc."); $infoObject->setObject($infoOrderProductItem); //add $infoOrderProductItem to $infoObject

Init

... $init->setInfo($infoObject); ...

Payout

... $payout->setInfo($infoObject); ...

InitRP

... $initRP->setInfo($infoObject); ...

Payment Link

... $paymentLink->setInfo($infoObject); ...

统计信息

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

GitHub 信息

  • Stars: 5
  • Watchers: 7
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固