Payment gateway for the Stripe payment service


Repository: https://github.com/webbuilders-group/silverstripe-stripe-gateway

Packagist: http://packagist.org/packages/webbuilders-group/silverstripe-stripe-gateway

Issues: https://github.com/webbuilders-group/silverstripe-stripe-gateway/issues

Authors: Ed Chipman

4 3 64


Readme

Stripe Payment Gateway

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"

Versions

dev-master
2016-33-22 2457562: UTC
BSD-3-Clause

Install composer require webbuilders-group/silverstripe-stripe-gateway dev-master

Manual Install: Download

Requires
  • silverstripe/framework: ~3.1
  • silverstripe/payment: 1.0.*
  • stripe/stripe-php: 1.*
  • composer/installers: *