Cashier Register Versions Save

Cashier Register is a simple quota feature usage tracker for Laravel Cashier subscriptions.

6.0.2

2 years ago

6.0.1

2 years ago

Updated tests & minimum requirements

6.0.0

2 years ago

Before upgrading the package from 5.x, make sure to check the upgrade guide for Stripe Cashier 13.x: https://github.com/laravel/cashier-stripe/blob/13.x/UPGRADE.md

PR: https://github.com/renoki-co/cashier-register/pull/43

  • Dropped Laravel 7.x support
  • Added Cashier Stripe 13.x support

5.0.2

3 years ago

5.0.1

3 years ago

5.0.0

3 years ago

Before upgrading

This update requires a new field in the database called used_total:

Schema::create('subscription_usages', function (Blueprint $table) {
            $table->id();
            $table->unsignedBigInteger('subscription_id');
            $table->string('feature_id');
            $table->unsignedSmallInteger('used');
+           $table->unsignedSmallInteger('used_total');
            $table->timestamps();
});

Changelog

4.3.1

3 years ago

4.2.0

3 years ago

4.1.0

3 years ago

Removed doctrine/dbal as a dependency