Download the PHP package vitepay/core without Composer
On this page you can find all versions of the php package vitepay/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package core
vitepay
一个thinkphp6的多网关支付框架。
安装
composer require vitepay/core vitepay/wechat
使用
修改 config/vitepay.php
return [
'sandbox' => true,//沙箱模式
'charge' => 'app\\model\\Charge',
'notify_url' => '',//留空则设为PAY_NOTIFY对应的路由
'route' => true,//是否注册路由
];
需要指定 charge
模型,并实现Payable
/**@var \vitepay\core\traits\PayableModel $charge */
$charge=\app\model\Charge::find()
//起调支付
$charge->pay('wechat_js');
//查询结果
$charge->query();
//判断结果
$charge->isComplete();
支持的支付网关
所有的支付网关需要实现Gateway.
当前可用支付网关如下:
网关 | Composer包 | 简介 | 作者 |
---|---|---|---|
vitepay/wechat | 微信支付 | liuwave | |
alipay | vitepay/alipay | 支付宝支付 | liuwave |
感谢
License
The MIT License (MIT). Please see License File for more information.
All versions of core with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1.0
topthink/framework Version ^6.0
symfony/options-resolver Version ^3.3
php-http/guzzle6-adapter Version ^2.0
nesbot/carbon Version ^2.28
moneyphp/money Version ^3.3
php-http/message Version ^1.8
topthink/framework Version ^6.0
symfony/options-resolver Version ^3.3
php-http/guzzle6-adapter Version ^2.0
nesbot/carbon Version ^2.28
moneyphp/money Version ^3.3
php-http/message Version ^1.8
The package vitepay/core contains the following files
Loading the files please wait ....