Skip to content

Acba bank driver for the omnipay payment processing library

Notifications You must be signed in to change notification settings

sarsam/omnipay-acba

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Omnipay: Acba

Acba bank driver for the Omnipay Laravel payment processing library

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.5+. This package implements Acba support for Omnipay.

Installation

Omnipay is installed via Composer. To install, simply add it to your composer.json file:

{
    "require": {
        "sarsam/omnipay-acba": "dev-master"
    }
}

And run composer to update your dependencies:

composer update

Or you can simply run

composer require sarsam/omnipay-acba

Basic Usage

  1. Use Omnipay gateway class:
    use Omnipay\Omnipay;
  1. Initialize ACBA gateway:
    $gateway = Omnipay::create('Acba');
    $gateway->setUserName(env('username'));
    $gateway->setPassword(env('password'));
    $gateway->setLanguage('lang'); // Language
    $gateway->setReturnUrl('url'); // request return URL
    $gateway->setAmount(10); // Amount to charge
    $gateway->setTransactionId(XXXX); // Transaction ID from your system
  1. Call purchase, it will automatically redirect to acba's hosted page
    $purchase = $gateway->purchase()->send();
    $purchase->redirect();

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.

About

Acba bank driver for the omnipay payment processing library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages