适用于app/Services/Gateway/CustomPay.php
存在的版本
// Jshipay
$app->post('/Jshi_notify', 'App\Services\Payment:notify');
$app->get('/Jshi_notify', 'App\Services\Payment:notify');
$app->post('/Jshi_return', 'App\Services\Payment:returnhtml');
$app->get('/Jshi_return', 'App\Services\Payment:returnhtml');
// end of Jshipay
3. 在 .config.php
下添加:
$_ENV['jshipid'] = 'xxx';//Peapay 商户号 xxx代表需要手动填写
$_ENV['jshikey'] = 'xxx';//Peapay 密钥 xxx代表需要手动填写
$_ENV['jshiapi'] = 'https://peapay.top/';
$_ENV['jshiname'] = '蒜香豌豆';
$_ENV['sitename'] = 'SSPANEL';
适用于app/Services/Gateway/CustomPay.php
不存在的版本
# flyfox
$_ENV['flyfoxpay'] = [
'config' => [
'hid' => 'xxx', //Peapay商户号 xxx代表需要手动填写
'key' => 'xxx', //Peapay密钥 xxx代表需要手动填写
'name' => '蒜香豌豆',
'sitename' => 'SSPANEL'
]
];