Download the PHP package apility/nets-easy-omnipay without Composer
On this page you can find all versions of the php package apility/nets-easy-omnipay. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package nets-easy-omnipay
Omnipay: Nets Easy
Nets Easy driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements Stripe support for Omnipay.
Table Of Contents
- Installation
- Basic Usage
- Initial setup
- Hosted Payment Page
- Checkout JS SDK
- Backend
- Frontend
- Example implementation
Installation
Omnipay is installed via Composer. To install, simply require league/omnipay
and apility/nets-easy-omnipay
with Composer:
Basic Usage
The following gateway os provided by this package:
For general usage instructions, please see the main Omnipay repository.
Initial setup
Hosted Payment Page
If you don't want to host the checkout page yourself (EmbeddedCheckout), you may the the HostedPaymentPage integration type. This will use a checkout page hosted by Nexi Group.
authorize.php php ", paymentId : "", containerId : "checkout-container-div", language: "en-GB" };
const checkout = new Dibs.Checkout(checkoutOptions);
checkout.on('payment-completed', function(response) {
window.location.href = '/callback.php?paymentid=' + response.paymentId;
});