Download the PHP package digitickets/omnipay-verifone-web-service without Composer
On this page you can find all versions of the php package digitickets/omnipay-verifone-web-service. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download digitickets/omnipay-verifone-web-service
More information about digitickets/omnipay-verifone-web-service
Files in digitickets/omnipay-verifone-web-service
Package omnipay-verifone-web-service
Short Description Verifone (Ocius) Web Service driver for the Omnipay payment processing library
License MIT
Homepage https://github.com/digitickets/omnipay-verifone-web-service
Informations about the package omnipay-verifone-web-service
omnipay-verifone-web-service
Verifone Web Service driver for the Omnipay PHP payment processing library
Omnipay implementation of the Verifone (Commidea) Web Service payment gateway.
This driver supports the remote Verifone Payment Gateway (Web Service). Payment information is sent and received via XML messages.
Installation
Important: Driver requires PHP's Intl extension to be installed.
The Verifone Omnipay driver is installed via Composer. To install, simply add it
to your composer.json
file:
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
What's Included
This driver was originally written to support Session-Based transactions (except for refunds, which are non session-based and were implemented). We then realised that Session-based didn't work for us, so Non Session-Based was implemented.
The driver registers a token when any purchase is made. This means repeat payments will be available on any payments, although actually making repeat payments is not yet implemented.
What's Not Included
It does not currently support PAYERAUTH.
The Session-based code wasn't completely finished, although it does work as it is. Ideally the token registration and confirm/reject messages need to be handled inside the purchase/refund request classes.
Basic Usage
This driver supports the following processes to handle transactions and refunds:
Non Session-based
Purchase Request (Transaction Request) -> Purchase Response (plus confirm/reject request)
Refund Request (Transaction Request) -> Refund Response (plus confirm/reject request)
Session-based
Generate Session Request -> Generate Session Response\
-> \
For general Omnipay usage instructions, please see the main Omnipay repository.
Support
If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.
If you believe you have found a bug in this driver, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.