faed/pay

基于laravel多通道支付服务

v0.1 2020-07-01 03:49 UTC

This package is auto-updated.

Last update: 2024-06-04 11:56:37 UTC


README

composer下载

composer require faed/pay 

生成配置文件

php artisan vendor:publish

配置文件

return [

    //通道
    'passageway'=>[
        'JlPayXcxPay'=>[
            //机构号
            'org_code'=> '',
            //商户号
            'mch_id'=>'',
            //私钥
            'merPriKey'=>'',
            //公钥
            'JlPubKey'=> '',
            //回调地址
            'notify_url'=>'',
        ],
    ]
];