WIP (not usable for now) Easily add billing services (Stripe, Paddle) to your app
- Add your package main features here
- and here
New to Masonite ? Please first read the Official Documentation. Masonite strives to have extremely comprehensive documentation 😃. It would be wise to go through the tutorials there. If you find any discrepencies or anything that doesn't make sense, be sure to comment directly on the documentation to start a discussion!
Also be sure to join the Slack channel!
pip install masonite-billing
Add BillingProvider to your project in config/providers.py
:
# config/providers.py
# ...
from masonite.billing import BillingProvider
# ...
PROVIDERS = [
# ...
# Third Party Providers
BillingProvider,
# ...
]
Then install OR publish the required package files (configuration, views ...):
python craft billing:install
OR (depending on your preferences)
python craft publish BillingProvider
Explain how to use your package
Please read the Contributing Documentation here.
Masonite Billing is open-sourced software licensed under the MIT license.