phpcommerce/payment-null

PHPCommerce Null Payment

Maintainers

Package info

github.com/phpcommerce/payment-null

Issues

pkg:composer/phpcommerce/payment-null

Statistics

Installs: 637

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2015-06-15 14:03 UTC

This package is not auto-updated.

Last update: 2026-03-15 01:59:14 UTC


README

This bundle registers a "Null Payment Gateway" configuration in PHPCommerce's PaymentGatewayConfigurationServiceProvider.

The null payment gateway can be used for testing purposes. It will just accept any Payment and mark is as valid without

doing anything else.

Usage

Just include it in your AppKernel for your dev/test environment:

    public function registerBundles() {
        // ...
            $bundles[] = new PHPCommerce\NullPaymentBundle\PHPCommerceNullPaymentBundle();
    }