delboy1978uk/bone-pay

Bone框架的支付包

v1.0.0 2020-08-19 20:33 UTC

This package is auto-updated.

Last update: 2024-09-20 06:04:30 UTC


README

Bone框架的支付网关包

安装

使用Composer

composer require delboy1978uk/bone-pay

用法

简单地将它添加到 config/packages.php

<?php

// use statements here
use Bone\Pay\PayPackage;

return [
    'packages' => [
        // packages here...,
        PayPackage::class,
    ],
    // ...
];

config/bone-pay.php 中配置你的支付适配器

return [
    'bone-pay' => [
        'adapters' => [
            'Paypal' => [
                
            ],
        ],
    ],
];