Download the PHP package jeanfprado/cashier without Composer
On this page you can find all versions of the php package jeanfprado/cashier. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jeanfprado/cashier
More information about jeanfprado/cashier
Files in jeanfprado/cashier
Package cashier
Short Description Cashier provides a subscription billing services.
License MIT
Homepage https://github.com/jeanfprado/cashier
Informations about the package cashier
Introduction
Cashier provides a subscription billing services. It handles almost all of the boilerplate subscription billing code you are dreading writing. In addition to basic subscription management, Cashier can handle plans.
Documentation
Installation
Configuration
Plan
Subscription
Billing
Installation
You can pull in the package via composer:
The package will automatically register itself.
Configuration
Laravel without auto-discovery:
If you don't use auto-discovery, add the CashierServiceProvider to the providers array in config/app.php
If you want to use the facade to log messages, add this to your facades in app.php:
Copy the package config to your local config with the publish command:
Plan
Creating all plans from config/cashier.php
via artisan
Subscription
Before you create a subscription you need prepare what class will be subscribable
In config/cashier.php
change key model
to model that will be a subscribable
.
Now in this model you need implements a contract. see example:
Now you can to create a subscription.
Billing
Creating a billing is very easy, you only need run a command.
Than if has a billing to generate is done, and when the billing is paid, you need mark to paid.
Contributing
Thank you for considering contributing to Cashier!
License
Cashier is open-sourced software licensed under the MIT license.