cardgate / omnipay-cardgate
Cardgate gateway for the Omnipay payment processing library
Installs: 39 504
Dependents: 1
Suggesters: 1
Security: 0
Stars: 2
Watchers: 6
Forks: 8
Open Issues: 4
Requires
- omnipay/common: ~3.0
Requires (Dev)
- omnipay/tests: ~3.0
- squizlabs/php_codesniffer: ^3
This package is auto-updated.
Last update: 2024-10-29 00:16:44 UTC
README
CardGate plugin for Omnipay
Installation
Omnipay is installed via Composer. To install, simply add it
to your composer.json
file:
{ "require": { "cardgate/omnipay-cardgate": "~3.0" } }
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
Basic Usage
The following gateways are provided by this package:
- Cardgate
For general usage instructions, please see the main Omnipay repository. See also the Cardgate RESTFul Documentation
Example
$gateway = Omnipay::create( 'Cardgate' ); $gateway->initialize( array( 'siteId' => '<siteid>', 'merchantId' => '<merchantid>', 'apiKey' => '<apikey>', 'notifyUrl' => '<notifyurl>', 'returnUrl' => '<returnurl>', 'cancelUrl' => '<cancelurl>', 'testMode' => <bool:enabled> ) ); // Start the purchase $response = $gateway->purchase( array( 'paymentMethod' => '<paymentmethodid>', 'issuer' => <nummeric-issuerid>, 'description' => "Test description.", 'transactionReference' => 'TEST_TransactionReference_000123_mustBeUnique', 'amount' => '10.00', 'currency' => 'EUR', 'ipaddress' => '10.10.10.10' ) )->send(); if ( $response->isSuccessful() ) { // payment was successful: update database print_r( $response ); } elseif ( $response->isRedirect() ) { // redirect to offsite payment oGateway $response->redirect(); } else { // payment failed: display message to customer echo $response->getMessage(); }
Use the fetchIssuers response to see the available issuers
$response = $oGateway->fetchIssuers()->send(); if($response->isSuccessful()){ $oIssuers = $response->getIssuers(); }
The billing/shipping data are set with the card
parameter, with an array or CreditCard object.
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.