spondonit/mobilpay
Composer 安装命令:
composer require spondonit/mobilpay
包简介
Laravel mobilpay wrapper around omnipay with omnipay-mobilpay driver
README 文档
README
Laravel 5 mobilpay wrapper around omnipay with omnipay-mobilpay driver Edit Add topics
Table of Contents
Installation
Composer
Require the package via composer
composer require adrianbarbos/mobilpay
Or add the package to your composer.json file.
{
"require": {
"adrianbarbos/mobilpay": "^1.0"
}
}
And run composer update to get the latest version of the package.
Laravel
Mobilpay comes with a service provider for Laravel. You'll need to add it to your composer.json as mentioned in the above steps, then register the service provider with your application.
From Laravel 5.5, the service provider and facades will automatically get registered.
Open config/app.php and find the providers key. Add MobilpayServiceProvider to the array.
... Adrianbarbos\Mobilpay\MobilpayServiceProvider::class, ...
Add the required aliases to the list of class aliases in the same file.
... 'Omnipay' => Omnipay\Omnipay::class, 'Mobilpay' => Adrianbarbos\Mobilpay\Mobilpay::class, ...
Publish config.
php artisan vendor:publish --provider="Adrianbarbos\Mobilpay\MobilpayServiceProvider"
Basic Usage
Initiating Payment Request
// controller function Mobilpay::setOrderId(1) ->setAmount('10.00') ->setDetails('Some details') ->purchase();
Handle Reponse
// controller function $response = Mobilpay::response(); $data = $response->getData(); //array switch($response->getMessage()) { case 'confirmed_pending': // transaction is pending review. After this is done, a new IPN request will be sent with either confirmation or cancellation //update DB, SET status = "pending" break; case 'paid_pending': // transaction is pending review. After this is done, a new IPN request will be sent with either confirmation or cancellation //update DB, SET status = "pending" break; case 'paid': // transaction is pending authorization. After this is done, a new IPN request will be sent with either confirmation or cancellation //update DB, SET status = "open/preauthorized" break; case 'confirmed': // transaction is finalized, the money have been captured from the customer's account //update DB, SET status = "confirmed/captured" break; case 'canceled': // transaction is canceled //update DB, SET status = "canceled" break; case 'credit': // transaction has been refunded //update DB, SET status = "refunded" break; }
Options
Order id
/** * @param $value string * @return $this */ public function setOrderId($value)
Amount
/** * @param $value string * @return $this */ public function setAmount($value)
Currency
/** * @param $value string * @return $this */ public function setCurrency($value)
Details
/** * @param $value string * @return $this */ public function setDetails($value)
Confirm Url
/** * @param $value string * @return $this */ public function setConfirmUrl($value)
Return Url
/** * @param $value string * @return $this */ public function setReturnUrl($value)
Test Mode
/** * @param $value boolean * @return $this */ public function setTestMode($value)
Additional Params
/** * @param $value array * @return $this */ public function setAdditionalParams($value)
spondonit/mobilpay 适用场景与选型建议
spondonit/mobilpay 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.65k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2023 年 08 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 spondonit/mobilpay 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spondonit/mobilpay 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-09