connox/omnipay-billpay

This package is abandoned and no longer maintained. No replacement package was suggested.

BillPay gateway for Omnipay payment processing library

0.1.5 2020-01-13 14:49 UTC

This package is auto-updated.

Last update: 2020-02-13 14:59:00 UTC


README

BillPay driver for the Omnipay PHP payment processing library

License Latest Stable Version Latest Unstable Version Total Downloads Scrutinizer Code Quality Code Coverage Build Status Travis

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 as Gateway::authorize and Gateway::purchase
  • InvoiceCreated as Gateway::invoiceCreated
  • Cancel as Gateway::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.