shegun-babs / flutterwave-php
Convenient PHP package for the Flutterwave API
dev-master
2021-11-24 11:28 UTC
Requires
- php: ^7.3 || ^8.0
- ext-json: *
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- pestphp/pest: ^1.20
- pestphp/pest-plugin-mock: ^1.0
- phpstan/phpstan: ^0.12.99
- phpunit/phpunit: ^9.3.7
This package is auto-updated.
Last update: 2025-02-24 17:58:09 UTC
README
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.