delboy1978uk/bone-pay

Pay package for Bone Framework

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

This package is auto-updated.

Last update: 2024-04-20 05:08:27 UTC


README

Payment gateway package for Bone Framework

installation

Use Composer

composer require delboy1978uk/bone-pay

usage

Simply add to the config/packages.php

<?php

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

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

Configure your payment adapters in config/bone-pay.php

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