PHPackages                             frankmullenger/payment-paymentexpress - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. frankmullenger/payment-paymentexpress

ActiveSilverstripe-module[Payment Processing](/categories/payments)

frankmullenger/payment-paymentexpress
=====================================

SilverStripe Payment Express Module

1.1.0(8y ago)03.9k9[5 issues](https://github.com/frankmullenger/silverstripe-payment-paymentexpress/issues)[6 PRs](https://github.com/frankmullenger/silverstripe-payment-paymentexpress/pulls)BSD-3-ClausePHPPHP &gt;=5.3.2

Since Aug 9Pushed 8y ago2 watchersCompare

[ Source](https://github.com/frankmullenger/silverstripe-payment-paymentexpress)[ Packagist](https://packagist.org/packages/frankmullenger/payment-paymentexpress)[ RSS](/packages/frankmullenger-payment-paymentexpress/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (4)Used By (0)

SilverStripe Payment PaymentExpress Module
==========================================

[](#silverstripe-payment-paymentexpress-module)

**Work in progress, some changes to the API still to come**

Maintainer Contacts
-------------------

[](#maintainer-contacts)

- [Frank Mullenger](https://github.com/frankmullenger)

Requirements
------------

[](#requirements)

- SilverStripe 3.0.x
- Payment module 1.0.x

Documentation
-------------

[](#documentation)

Payment Express PxPay integration for payment module. This module currently supports [PxPay](http://www.paymentexpress.com/Technical_Resources/Ecommerce_Hosted/PxPay.aspx) only, meaning payments are processed on the PaymentExpress site.

### Installation Instructions

[](#installation-instructions)

1. Place this directory in the root of your SilverStripe installation and call it 'payment-paymentexpress'.
2. Visit yoursite.com/dev/build?flush=1 to rebuild the database.

### Usage Overview

[](#usage-overview)

Enable in your application YAML config (e.g: mysite/\_config/payment.yaml:

```
PaymentGateway:
  environment:
    'dev'

PaymentProcessor:
  supported_methods:
    dev:
      - 'PaymentExpressPxPay'
    live:
      - 'PaymentExpressPxPay'
```

Configure using your PaymentExpress account details in the same file:

```
PaymentExpressGateway_PxPay:
  live:
    authentication:
      user_id: 'PxPayUserId'
      key: 'PxPayKey'
  dev:
    authentication:
      user_id: 'PxPayUserId'
      key: 'PxPayKey'
```

By default the gateway class can accept NZD, USD or GBP (see PaymentExpressGateway\_PxPay::$supportedCurrencies). Usually your PaymentExpress account will be for a single currency that matches your merchant account. To specify this currency as the single acceptable currency alter the YAML config file e.g: a configuration that will only process payments in Australian dollars:

```
PaymentExpressGateway_PxPay:
  live:
    authentication:
      user_id: 'PxPayUserId'
      key: 'PxPayKey'
    supported_currencies:
      'AUD' : 'Australian Dollar'
  dev:
    authentication:
      user_id: 'PxPayUserId'
      key: 'PxPayKey'
    supported_currencies:
      'AUD' : 'Australian Dollar'
```

**Note:** Remember to ?flush=1 after changes to the config YAML files.

### Testing

[](#testing)

1. Set up a [developer account with PaymentExpress](http://www.paymentexpress.com/Knowledge_Base/Getting_Set_Up_Guides/3D_Secure).
2. Retrieve PxPayUserId and PxPayKey values and configure module accordingly using the dev environment.
3. Install the SilverStripe payment test module or supporting ecommerce module and process a payment with \[test credit card details\]([http://www.paymentexpress.com/Knowledge\_Base/Frequently\_Asked\_Questions/Developer\_FAQs#Testing](http://www.paymentexpress.com/Knowledge_Base/Frequently_Asked_Questions/Developer_FAQs#Testing) Details).
4. Log in to your [developer account on PaymentExpress](https://www.paymentexpress.com/pxmi/logon) and go to Transactions-&gt;Transaction Search to view the payment that you processed.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 76.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1522 days

Total

2

Last Release

3133d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2db96f6ba18193dc0469b4c0d86c6755579295f9f0c5a608cd50f2d7a998f88e?d=identicon)[frankmullenger](/maintainers/frankmullenger)

---

Top Contributors

[![frankmullenger](https://avatars.githubusercontent.com/u/50590?v=4)](https://github.com/frankmullenger "frankmullenger (10 commits)")[![brettt89](https://avatars.githubusercontent.com/u/4122344?v=4)](https://github.com/brettt89 "brettt89 (2 commits)")[![stevie-mayhew](https://avatars.githubusercontent.com/u/1953220?v=4)](https://github.com/stevie-mayhew "stevie-mayhew (1 commits)")

---

Tags

silverstripepaymentdpspayment express

### Embed Badge

![Health badge](/badges/frankmullenger-payment-paymentexpress/health.svg)

```
[![Health](https://phpackages.com/badges/frankmullenger-payment-paymentexpress/health.svg)](https://phpackages.com/packages/frankmullenger-payment-paymentexpress)
```

###  Alternatives

[omnipay/paymentexpress

Payment Express (DPS) driver for the Omnipay payment processing library

261.6M13](/packages/omnipay-paymentexpress)[silvershop/core

Provides an ecommerce product catalog, shopping cart, and order management system

11340.0k37](/packages/silvershop-core)[silverstripe/silverstripe-omnipay

SilverStripe Omnipay Payment Module

38106.0k15](/packages/silverstripe-silverstripe-omnipay)[sunnysideup/ecommerce

Silverstripe E-commerce Application

257.2k79](/packages/sunnysideup-ecommerce)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
