nekofar / omnipay-nobitex
Nobitex driver for the Omnipay PHP payment processing library
Requires
- php: ^7.0
- ext-json: *
- omnipay/common: ^3.0
Requires (Dev)
- omnipay/tests: ^3.1
- phpunit/phpunit: ^6.0
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2024-11-09 12:19:47 UTC
README
Nobitex driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements Nobitex support for Omnipay.
Installation
Omnipay is installed via Composer. To install, simply require
league/omnipay
and nekofar/omnipay-nobitex
with Composer:
composer require league/omnipay nekofar/omnipay-nobitex
Basic Usage
The following gateways are provided by this package:
- Nobitex
For general usage instructions, please see the main Omnipay repository.
Example
Purchase
The result will be a redirect to the gateway or bank.
use Omnipay\Omnipay; $gateway = Omnipay::create('Nobitex'); $gateway->setApiKey('xxxxxxxx'); $gateway->setReturnUrl('https://www.example.com/return'); // Send purchase request $response = $gateway->purchase([ 'amount' => 10000, 'description' => 'Some description' ])->send(); // Process response if ($response->isRedirect()) { // Redirect to offsite payment gateway $response->redirect(); } else { // Payment failed: display message to customer echo $response->getMessage(); }
On return, the usual completePurchase will provide the result of the transaction attempt.
The final result includes the following methods to inspect additional details:
// Send purchase complete request $response = $gateway->completePurchase([ 'token' => $_REQUEST['token'], )->send(); // Process response if ($response->isSuccessful()) { // Payment was successful print_r($response); } else { // Payment failed: display message to customer echo $response->getMessage(); }
Testing
composer test
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.