mk990/omnipay-perfectmoney

用于Omnipay支付处理库的Perfect Money网关

v3.0.1 2020-10-31 16:42 UTC

This package is auto-updated.

Last update: 2024-09-29 05:56:03 UTC


README

Build Status Codacy Badge Total Downloads

Omnipay支付处理库提供的PerfectMoney网关。

Omnipay是一个与框架无关的多网关支付处理库,适用于PHP 7.2+。此包实现了Omnipay对PerfectMoney的支持。

安装

通过Composer安装Omnipay。要安装,只需将其添加到您的composer.json文件中

{
    "require": {
        "mk990/omnipay-perfectmoney": "*"
    }
}

运行Composer以更新您的依赖项

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

基本用法

此包提供的以下网关

  • PerfectMoney

有关一般使用说明,请参阅主Omnipay仓库。请参阅PerfectMoney文档

示例

  1. 购买
$gateway = Omnipay::create('PerfectMoney');

$gateway->setAccount('');
$gateway->setAccountName('');
$gateway->setBaggageFields('');
$gateway->setSuggestedMemo('');
$gateway->setPassphrase('');
$gateway->setCurrency('');

$response = $gateway->purchase([
       'amount' => '0.1',
       'currency' => 'USD',
       'transactionId' => time(),
       'description' => 'Order # 123',
       'cancelUrl' => 'https://example.com',
       'returnUrl' => 'https://example.com',
       'notifyUrl' => 'https://example.com'
        ])->send();

if ($response->isSuccessful()) {
   // success
} elseif ($response->isRedirect()) {

   # Generate form to do payment
   $hiddenFields = '';
   foreach ($response->getRedirectData() as $key => $value) {
       $hiddenFields .= sprintf(
          '<input type="hidden" name="%1$s" value="%2$s" />',
           htmlentities($key, ENT_QUOTES, 'UTF-8', false),
           htmlentities($value, ENT_QUOTES, 'UTF-8', false)
          )."\n";
   }

   $output = '<form action="%1$s" method="post"> %2$s <input type="submit" value="Purchase" /></form>';
   $output = sprintf(
      $output,
      htmlentities($response->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false),
      $hiddenFields
   );
   echo $output;
   # End of generating form
} else {
   echo $response->getMessage();
}
  1. 验证webhook
try {
    $response = $gateway->completePurchase()->send();
    $transactionId = $response->getTransactionId();
    $amount = $response->getAmount();
    $success = $response->isSuccessful();
    $currency = $response->getCurrency();
    if ($success) {
       // success
    }
} catch (\Exception $e) {
  // check $e->getMessage()
}
  1. 退款
try {
    $response = $gateway->refund(
        [
            'payeeAccount' => 'U123456789',
            'amount' => 0.1,
            'description' => 'Testing perfectMoney',
            'currency' => 'USD',
        ]
    )->send();

    if ($response->isSuccessful()) {
        // success
    } else {
        // check $response->getMessage();
    }

} catch (\Exception $e) {
    // check $e->getMessage();
}

支持

如果您在使用Omnipay时遇到一般问题,我们建议您在Stack Overflow上发布帖子。请确保添加omnipay标签,以便易于找到。

如果您想了解发布公告,讨论项目想法或提出更详细的问题,还有一个邮件列表,您可以订阅它。

如果您认为您发现了错误,请使用GitHub问题跟踪器报告。