shegun-babs/flutterwave-php

Convenient PHP package for the Flutterwave API

dev-master 2021-11-24 11:28 UTC

This package is auto-updated.

Last update: 2024-05-24 16:33:05 UTC


README

Latest Version on Packagist Build Status Quality Score Total Downloads

A PHP Package to easily use the Flutterwave services which makes it easy to send and receive money. This package supports PSR4

Installation

You can install the package via composer:

composer require shegun-babs/flutterwave-php

Usage

###Banks

use Flutterwave\FlutterwaveClient;

$keys = [
    'secret key here...',
    'public key here...',
    'encryption key here...',
];

$flutterwave = new FlutterwaveClient(...$keys);

//get Banks
$banks = $flutterwave->banks->getAllBanks();

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email shegun.babs@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

PHP Package Boilerplate

This package was generated using the PHP Package Boilerplate.