| Install | |
|---|---|
composer require lanos/laravel-cashier-stripe-connect |
Working on open source packages and helping other developers is my true passion, unfortunately I have to work in order to pay bills. The more people that help me out, the more time I can spend building cool packages and supporting developers. It doesn't have to be much, just a cup of coffee's worth. It's all appreciated!
This update brings compatibility with Laravel Cashier 16.x which introduces support for Stripe's new metered billing API (Stripe Billing Meters). Changes include:
connected_subscription_items table: meter_event_name and meter_id2025-07-30.basilTo upgrade, run:
composer update
php artisan vendor:publish --tag="migrations"
php artisan migrate
Important Note: After deploying this update, remember to update your Stripe API version in your Stripe dashboard to 2025-07-30.basil to take full advantage of the new features.
This update bring new functionality for users wishing to use payment links with their connected accounts:
This update bring new functionality for users wishing to use both physical terminals and the new Apple/Android tap to pay functionality. It will facilitate the use of:
The Cashier 15 update brought about a few changes to the package. These include:
This package is designed to seamlessly connect all of your eloquent models, mapping them to the relevant stripe entities in order to make a marketplace or payments platform.
After installing the package via Composer, you can publish the configuration file to customize the package settings:
php artisan vendor:publish --provider="Lanos\CashierConnect\CashierConnectServiceProvider" --tag="config"
This will create a cashierconnect.php file in your config directory.
You can also publish the migrations:
php artisan vendor:publish --provider="Lanos\CashierConnect\CashierConnectServiceProvider" --tag="migrations"
Or publish everything at once (config and migrations):
php artisan vendor:publish --provider="Lanos\CashierConnect\CashierConnectServiceProvider"
We now have a dedicated docs page for this plugin. You can view it here.
We now roughly support webhooks (Due to flexible nature of connect, you will need to declare handlers yourself) - Follow our guide!
Please refer to LICENSE.md for this project's license.
This list only contains some of the most notable contributors. For the full list, refer to GitHub's contributors graph.
Taylor Otwell for his amazing framework and all the contributors of Cashier.