remade / flw-php
There is no license information available for the latest version (dev-master) of this package.
PHP SDK for Flutterwave's APIs
dev-master
2018-03-25 06:33 UTC
Requires
- guzzlehttp/guzzle: ~6.0
- vlucas/valitron: ^1.4
This package is not auto-updated.
Last update: 2025-03-25 09:17:29 UTC
README
This is a PHP library for Flutterwave's API with a straightforward usage. This was created to solve an itch that comes with doing repetitive integration code
Installation
FlutterwavePHP uses Composer to install and update:
curl -s http://getcomposer.org/installer | php
php composer.phar require remade/flw-php
The examples below use PHP 5.4 syntax, but Valitron works on PHP 5.3+. This is also platform agnostic
Usage
Running Tests
The test suite depends on the Composer autoloader to load and run the Project files. Please ensure you have downloaded and installed Composer before running the tests:
- Download Composer
curl -s http://getcomposer.org/installer | php
- Run 'install'
php composer.phar install
- Run the tests
phpunit
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes
- Run the tests, adding new ones for your own code if necessary (
phpunit
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- Pat yourself on the back for being so awesome