connox / omnipay-billpay
BillPay gateway for Omnipay payment processing library
Installs: 29 972
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 10
Forks: 2
Open Issues: 0
Requires
- php: >=5.6
- ext-bcmath: *
- omnipay/common: ~2.0
Requires (Dev)
- fabpot/php-cs-fixer: ~1.0
- omnipay/tests: ~2.0
README
BillPay driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.6+. This package implements BillPay support for Omnipay.
This package is still missing a lot of documentation on how to use it. Not all feature from BillPay are implemented yet. Currently covered are:
Preauthorize
asGateway::authorize
andGateway::purchase
InvoiceCreated
asGateway::invoiceCreated
Cancel
asGateway::refund
Installation
Omnipay is installed via Composer. To install, simply add it
to your composer.json
file:
{ "require": { "connox/omnipay-billpay": "~0.1" } }
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
Basic Usage
For general usage instructions, please see the main Omnipay repository.
Out Of Scope
Omnipay does not cover recurring payments or billing agreements, and so those features are not included in this package. Extensions to this gateway are always welcome.