yunhanshi/windcave-payment

The composer plugin for Payment Express (Windcave) Pxpay 2 and EFTPOS HIT (host Initiated Transactions)

v1.0.1 2021-03-13 04:18 UTC

This package is auto-updated.

Last update: 2025-05-17 14:42:23 UTC


README

Overview

This plugin is for fast development of Payment Express (Windcave) Pxpay 2 and EFTPOS HIT (host Initiated Transactions) service. To use this plugin, you should apply for related accounts from Windcave.

Requirements

  • PHP 7.0+.
  • cURL extension.
  • Windcave account.

Install

Composer

run the following command in your project's root directory

composer require yunhanshi/windcave-payment

Manual

Download the SDK source code, and introduce the autoload.php file under the SDK directory to your code:

require_once '/path/to/windcave-payment/autoload.php';

Pxpay 2

PxPay 2.0 is a platform independent ecommerce solution provided by Windcave. Using a Hosted Payment Page to accept sensitive card data, PxPay2.0 provides a financially secure and compliant solution without exposing merchants to sensitive information. Instead of hosting a payment page on their own website, PxPay 2.0 allows merchants to redirect their customer to a payment page hosted by Windcave; this will normally reduce the scope of Payment Card Industry compliance.

Document

Example

See example in file example/PxpaySample.php

HIT

The Windcave Host Initiated Transaction (HIT) solution is a web facing HTTPS service that permits control of a payment transaction on a Windcave terminal.

There is no requirement of a direct physical connection between the Point of Sale (POS) application and the Windcave terminal. All required software is on the Windcave Terminal and Host. All messages are sent online via the internet to create an end-to-end cloud-based payment solution.

Document

Example

See example in file example/HITSample.php