Download the PHP package sylapi/omnipay-paylane without Composer
On this page you can find all versions of the php package sylapi/omnipay-paylane. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package omnipay-paylane
Omnipay: Paylane
Paylane driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Dummy support for Omnipay.
Installation
Omnipay 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
Basic purchase example
Basic purchase success example
Basic Usage
The following gateways are provided by this package:
- Paylane
This is a dummy gateway driver intended for testing purposes. If you provide a card number ending in an even number, the driver will return a success response. If it ends in an odd number, the driver will return a generic failure response. For example:
- 4111111111111111 - Visa - Sale successful
- 5500000000000004 - MasterCard - Sale successful
- 370000000000002 - American Express - Sale successful
- 4000000000000069 - Visa - 3-D Secure authentication is required.(sale error 700)
- 4012001036275556 - Visa - Unable to verify card enrollment (enrollment check error 720)
- 4012001038488884 - Visa - Unable to verify card enrollment (enrollment check error 720)
- 4012001036298889 - Visa - Unable to verify card enrollment (enrollment check error 720)
- 4012001038443335 - Visa - 3-D Secure Enrollment testing – card not enrolled in 3-D Secure
- 4012001036853337 - Visa - Card enrolled, verification failed (sale error 703)
- 4012001036983332 - Visa - Card enrolled, verification failed (sale error 703)
- 4012001037490006 - Visa - Card enrolled, verification failed (sale error 703)
- 4012001037461114 - Visa - Card enrolled, authentication failure (sale error 704)
- 4012001037484447 - Visa -Card enrolled, authentication not available (sale error 725)
All errors Paylane system
For general 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 want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.
If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.