Skip to content

peter-brennan/acelle-cashier

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Total Downloads Latest Stable Version License

Introduction

Laravel Cashier provides an expressive, fluent interface to Stripe's 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 coupons, swapping subscription, subscription "quantities", cancellation grace periods, and even generate invoice PDFs.

Official Documentation

Documentation for Cashier can be found on the Laravel website.

Running Cashier's Tests Locally

You will need to set the following details locally and on your Stripe account in order to run the Cashier unit tests:

Environment

.env

STRIPE_SECRET=
STRIPE_MODEL=Laravel\Cashier\Tests\Fixtures\User

You can set these variables in the phpunit.xml file.

Stripe

Plans

* monthly-10-1 ($10)
* monthly-10-2 ($10)

Coupons

* coupon-1 ($5)

Contributing

Thank you for considering contributing to the Cashier. You can read the contribution guide lines here.

License

Laravel Cashier is open-sourced software licensed under the MIT license.

Database

Step 1: subscription creations (newSubscription) Plan - id - remote_plan_id - billable_card_brand - billable_card_last_four

Owner - id - remote_owner_id

Subscription - id - local_owner_id - local_plan_id

Subscription - id - gateway - remote_id - local_owner_id - local_plan_id - quantity - trial_ends_at - ends_at

Step 2: subscription recurring ()

Step 3: invoices listing (last invoice, next invoice, invoice list) - Customers can quick view their invoices

Step 4: Admin subscription editable

Step 5: trials period

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 71.5%
  • Blade 28.0%
  • CSS 0.5%