lightningsdk / checkout-stripe
Adds Stripe integration to Checkout.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lightningsdk/checkout-stripe
This package is auto-updated.
Last update: 2025-10-15 08:00:24 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},
        ]
    ]
];