lightningsdk/checkout-stripe

There is no license information available for the latest version (dev-master) of this package.

Adds Stripe integration to Checkout.

dev-master 2020-06-13 12:50 UTC

This package is auto-updated.

Last update: 2025-03-15 06:36:17 UTC


README

What it does:

Adds Stripe payment processing to Checkout.

Installation and Configuration

$conf = [
    'modules' => [
        'stripe' => [
            // A thankyou email message id that is sent to the buyer on
            // successful purchase.
            'buyer_email' => {int}
            
            // An alert message to send to the seller when an order
            // has been made.
            'seller_email' => {int}
            
            // The descriptoer to appear on the credit card statement
            // of the buyer
            'statement_descriptor' => {string}
            
            // Whether to allow bitcoin payment processing.
            'bitcoin' => false,
            
            // Public key for processing transactions
            'public' => {string},
            
            // Private key for processing transactions
            'private' => {string},
        ]
    ]
];