mirror of
https://gitee.com/yansongda/pay.git
synced 2024-11-30 11:17:43 +08:00
Migrated repository
src | ||
.gitignore | ||
composer.json | ||
composer.lock | ||
LICENSE | ||
README.md |
Pay
使用方法
1、通过 composer 加载
composer required yansongda/pay
2、在代码中使用
use Yansongda\Pay\Pay;
$config = [
'alipay' => [
'app_id' => '',
'notify' => '',
'return' => '',
'ali_public_key' => '',
'private_key' => '',
],
];
$biz = [
'out_trade_no' => '',
'total_amount' => '',
'subject' => '',
];
$pay = new Pay($config);
return $pay->dirver('alipay')->gateway('web')->pay($biz);
LICENSE
MIT