vvv / weixin-pay
weixinPay
v1.1
2021-11-19 05:07 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-09-19 10:50:49 UTC
README
微信App支付
运行环境
- php >= 7.0
- composer
安装
$ composer require vvv/weixin-pay
使用
$wexin = new WxPay($appid, $mch_id, $api_key);
$params = [
'total_fee' => 1, //单位分
'out_trade_no' => time(),
'body' => 'subject-测试',
'notify_url' => '回调地址',
];
return $wexin->wxpayandroid($params);
//异步回调
return $wexin->notify();
许可证
MIT