webbuilders-group/silverstripe-stripe-gateway

Payment gateway for the Stripe payment service

Maintainers

Package info

github.com/webbuilders-group/silverstripe-stripe-gateway

Type:silverstripe-module

pkg:composer/webbuilders-group/silverstripe-stripe-gateway

Statistics

Installs: 64

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 1

dev-master 2016-06-22 12:33 UTC

This package is auto-updated.

Last update: 2026-03-01 00:09:31 UTC


README

Stripe payment gateway for the SilverStripe payment module

Maintainer Contact

Requirements

Installation

If you prefer you may also install using composer:

composer require webbuilders-group/silverstripe-stripe-gateway

Usage

To use Stripe as the payment gateway you need to retrive your api key from your account settings then in your site's config.yml you need to add the following:

PaymentProcessor:
    supported_methods:
        dev:
            - 'StripePaymentGateway'
        live:
            - 'StripePaymentGateway'

StripeGateway:
    test_api_secret: "YOUR TEST SECRET KEY"
    api_secret: "YOUR LIVE SECRET KEY"