All Projects → beebmx → Kirby Pay

beebmx / Kirby Pay

Licence: mit
Make online payments with Kirby

Projects that are alternatives of or similar to Kirby Pay

drf-stripe-subscription
An out-of-box Django REST framework solution for payment and subscription management using Stripe.
Stars: ✭ 42 (+55.56%)
Mutual labels:  stripe, payment
Stripe
A comprehensive PHP Library for the Stripe.
Stars: ✭ 256 (+848.15%)
Mutual labels:  stripe, payment
PayumYiiExtension
Rich payment solutions for Yii framework. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more
Stars: ✭ 13 (-51.85%)
Mutual labels:  stripe, payment
Pay
Payments for Ruby on Rails apps
Stars: ✭ 759 (+2711.11%)
Mutual labels:  stripe, pay
Pay
可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了
Stars: ✭ 4,176 (+15366.67%)
Mutual labels:  payment, pay
sep-pay
Pay.ir Payment Package for Laravel 5.3+
Stars: ✭ 17 (-37.04%)
Mutual labels:  pay, payment
nestjs-stripe
Provides an injectable Stripe client to nestjs modules
Stars: ✭ 126 (+366.67%)
Mutual labels:  stripe, payment
credit-card-prompt
Credit card prompt with validation and address lookup
Stars: ✭ 13 (-51.85%)
Mutual labels:  pay, payment
Gringotts
A complete payment library for Elixir and Phoenix Framework
Stars: ✭ 396 (+1366.67%)
Mutual labels:  stripe, payment
Gopay
golang支付:微信公众号,微信app,微信小程序,微信企业支付,支付宝网页版,支付宝app,支付宝企业支付
Stars: ✭ 313 (+1059.26%)
Mutual labels:  payment, pay
DYFStoreKit
([Swift] https://github.com/chenxing640/DYFStore) A lightweight and easy-to-use iOS library for In-App Purchases (Objective-C). DYFStoreKit uses blocks and notifications to wrap StoreKit, provides receipt verification and transaction persistence and doesn't require any external dependencies.
Stars: ✭ 52 (+92.59%)
Mutual labels:  pay, payment
Vue Stripe
Stripe Checkout & Elements for Vue.js
Stars: ✭ 669 (+2377.78%)
Mutual labels:  stripe, payment
invoicing
GetPaid (Formerly the Invoicing plugin) is a lightweight Payments and Invoicing system for WordPress. It can be used to sell anything online via payment forms or buy now buttons that can be added to any landing page. It can also be used by freelancers to manage their Invoices or by 3rd party Themes and Plugins as their payment system. GeoDirecto…
Stars: ✭ 34 (+25.93%)
Mutual labels:  stripe, payment
svelte-stripe-js
Everything you need to add Stripe Elements to your Svelte project
Stars: ✭ 139 (+414.81%)
Mutual labels:  stripe, payment
direct-stripe
Stripe payment button for WordPress websites
Stars: ✭ 12 (-55.56%)
Mutual labels:  stripe, payment
stripe-update-card
💳 Expose a page that let your customers update their payment information on Stripe.
Stars: ✭ 16 (-40.74%)
Mutual labels:  stripe, payment
Omnipay Pingpp
A Ping++ driver for the Omnipay PHP payment processing library. 一个聚合了支付宝(APP、Wap、PC、即时到账、扫码、企业付款),微信(APP、公众号、红包), 银联网关、银联企业网银、Apple Pay、QQ 钱包、易宝支付、百度钱包、京东支付、京东白条、招行一网通、分期支付等国内主流支付渠道的聚合支付网关(Ping++, also known as Pingpp/Pingxx/Pingplusplus)
Stars: ✭ 227 (+740.74%)
Mutual labels:  stripe, payment
react-stripe-script-loader
A React Component that loads Stripe script if necessary and shows React Stripe Elements
Stars: ✭ 22 (-18.52%)
Mutual labels:  stripe, payment
Ijpay
IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付、PayPal 支付等常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。右上角点下小星星✨
Stars: ✭ 3,561 (+13088.89%)
Mutual labels:  payment, pay
Payumbundle
Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.
Stars: ✭ 509 (+1785.19%)
Mutual labels:  stripe, payment

Build Status Latest Stable Version License

Kirby Pay

Kirby Pay offers a painless and easy way to create payments for Kirby, with many things to customize if you want.

See the docs for everything: https://beebmx.github.io/kirby-pay

Installation

Composer

composer require beebmx/kirby-pay

Usage

After you install the package just include the snippets and set the items (products or services) to sell:

<header>

<meta name="csrf-token" content="<?= csrf() ?>">
<?php snippet('kirby-pay.styles') ?>

</header>
<body>

<?php
    snippet('kirby-pay.payment', [
        'items' => [
            ['name' => 'Product 001', 'amount' => 20.00, 'quantity' => 1],
            ['name' => 'Product 002', 'amount' => 10.00, 'quantity' => 2],
        ],
    ]);
?>

</body>

Disclaimer

This plugin is provided "as is" with no guarantee. Use it at your own risk and always test it yourself before using it in a production environment.

Credits

License

Licensed under the MIT license, see LICENSE.md for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].