webbuilders-group/silverstripe-stripe-gateway

Stripe支付服务的支付网关

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

This package is auto-updated.

Last update: 2024-08-29 02:22:15 UTC


README

SilverStripe支付模块的Stripe支付网关

维护者联系方式

要求

安装

如果您愿意,也可以使用composer安装

composer require webbuilders-group/silverstripe-stripe-gateway

用法

要使用Stripe作为支付网关,您需要从您的账户设置中检索您的API密钥,然后在您的网站的config.yml中需要添加以下内容

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

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