phuongdev89 / omnipay-paydash
Omnipay for paydash
dev-master
2023-03-07 05:41 UTC
Requires
- ext-curl: *
- ext-json: *
- omnipay/common: ^3.0
This package is auto-updated.
Last update: 2024-09-07 08:35:59 UTC
README
Omnipay for Paydash
安装
安装此扩展的首选方式是通过 composer。
运行以下命令之一
php composer.phar require --prefer-dist phuongdev89/omnipay-paydash "*"
或添加
"phuongdev89/omnipay-paydash": "*"
到您的 composer.json
文件的 require 部分。
用法
此软件包提供以下网关
- Paydash
有关一般用法说明,请参阅主要的 Omnipay 存储库。
示例
创建支付 URL
use Omnipay\Paydash\Gateway; use Omnipay\Omnipay; $command = Omnipay::create(Gateway::NAME); $command->initialize([ 'apiKey' => '', ]); $response = $command->purchase([ 'email' => 'test@gmail.com', 'amount' => 10, 'webhookURL' => 'https://domain.com/hook', 'returnURL' => 'https://domain.com/return?paymentId={paymentID}', 'metadata' => '', //your meta data, must be string & optional ])->send(); if($response->isSuccessful()){ $redirectUrl = $response->getRedirectUrl(); header("Location: $redirectUrl"); }
Webhook 支付
use Omnipay\Paydash\Gateway; use Omnipay\Omnipay; $data = json_decode(file_get_contents('php://input')); $command = Omnipay::create(Gateway::NAME); $command->initialize([ 'apiKey' => '', ]); $response = $command->webhook($data)->send(); if($response->isSuccessful()){ //todo Paid } else { echo $response->getMessage(); }
检查支付状态
use Omnipay\Paydash\Gateway; use Omnipay\Omnipay; $command = Omnipay::create(Gateway::NAME); $command->initialize([ 'apiKey' => '', ]); $data = ['id'=>'{paydash_id}']; //that paymentId returned when create payment url $response = $command->status($data)->send(); if($response->isPaid()){ //todo Paid } else { echo $response->getMessage(); }