lightningsdk / checkout-stripe
此包的最新版本(dev-master)没有可用的许可证信息。
为Checkout添加Stripe集成。
dev-master
2020-06-13 12:50 UTC
This package is auto-updated.
Last update: 2024-09-15 05:44:40 UTC
README
它做什么
为Checkout添加Stripe支付处理。
安装和配置
$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},
]
]
];