elegantly / laravel-stripe
Stripe and Stripe Connect for your Laravel App
Fund package maintenance!
ElegantEngineeringTech
Installs: 1 703
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- illuminate/contracts: ^11.0||^12.0
- spatie/laravel-package-tools: ^1.16
- spatie/laravel-stripe-webhooks: ^3.7
- stripe/stripe-php: ^15.0||^16.0
Requires (Dev)
- larastan/larastan: ^2.9||^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^10.0.0||^9.0.0||^8.22.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.3||^2.0
- phpstan/phpstan-deprecation-rules: ^1.1||^2.0
- phpstan/phpstan-phpunit: ^1.3||^2.0
README
A simple way to attach Stripe Customer and Account to your Model in Laravel.
- Stripe webhooks ready to use out of the box
- Access Stripe PHP SDK easily
Installation Guide
You can install the package via Composer:
composer require elegantly/laravel-stripe
You can publish the configuration file with:
php artisan vendor:publish --tag="stripe-config"
This is the content of the published configuration file:
use Elegantly\Stripe\Commands\CreateStripeWebhooksCommand; use Elegantly\Stripe\ModelRepository; return [ 'models' => [ 'accounts' => [ \App\Models\User::class, ], 'customers' => [ \App\Models\User::class, ], 'repository' => ModelRepository::class, ], 'cache' => [ 'accounts' => true, 'customers' => false, ], 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), 'version' => env('STRIPE_VERSION'), /** * This is only used for the CreateStripeWebhooksCommand. * You can add more webhooks directly from your Stripe Dashboard. */ 'webhooks' => [ [ 'url' => '/webhooks/stripe', 'connect' => false, 'enabled_events' => [ ...CreateStripeWebhooksCommand::DEFAULT_WEBHOOKS_EVENTS, ], ], ], ];
Usage Examples
Creating and retrieving a Stripe Account:
$user->createStripeAccount(); $user->getStripeAccount();
Creating and retrieving a Stripe Customer:
$user->createStripeCustomer(); $user->getStripeCustomer();
Model Preparation
Database Setup
This package relies on columns you need to add to any Model that has a Stripe customer or account. To do so, we provide a migration that will automatically add the required columns to your models. To configure which models are related to Stripe, you must edit the configuration file.
Adding the Necessary Trait
Add the HasStripeCustomer
trait to your Model:
class Organization extends Model { use HasStripeCustomer; // ... }
Configuring Models
By default, the package assumes that your Stripe objects are attached to your User model. If this is not the case, you will need to edit the configuration file like this:
'models' => [ 'accounts' => [ \App\Models\User::class, ], 'customers' => [ \App\Models\Organization::class, ], 'repository' => ModelRepository::class, ],
Running Migrations
php artisan vendor:publish --tag="stripe-migrations" php artisan vendor:publish --provider="Spatie\WebhookClient\WebhookClientServiceProvider" --tag="webhook-client-migrations" php artisan migrate
Webhook Configuration
This package comes with the command stripe:create-webhooks
, which will create and configure webhooks on the Stripe dashboard for you. All you need to do is edit the webhooks and the endpoints you want to enable in the configuration file.
Editing Configuration
For example, you could configure two different webhooks with different routes and endpoints like so:
return [ // Other configurations... /** * This is only used for the CreateStripeWebhooksCommand. * You can add more webhooks directly from your Stripe Dashboard. */ 'webhooks' => [ [ 'url' => '/stripe/webhook/account', 'connect' => false, 'enabled_events' => [ ...CreateStripeWebhooksCommand::DEFAULT_WEBHOOKS_EVENTS, 'checkout.session.expired', 'checkout.session.completed', 'checkout.session.async_payment_succeeded', 'checkout.session.async_payment_failed', ], ], [ 'url' => '/stripe/webhook/connect', 'connect' => true, 'enabled_events' => [ ...CreateStripeWebhooksCommand::DEFAULT_WEBHOOKS_EVENTS, ], ], ], ];
Running the Command
Once you are satisfied with the configurations, you just need to run:
php artisan stripe:create-webhooks
Activating Webhooks on Stripe
All the webhooks configured by this command are disabled by default to prevent unexpected behavior. When you are ready, activate them from your Stripe Dashboard.
Listening to Stripe Events in Your Application
Now that Stripe sends webhooks to your app, you can listen to them from EventServiceProvider
.
This package relies on the great spatie/laravel-stripe-webhooks
package. You must follow their documentation to set up your listeners.
Upgrading Stripe's Webhook version
Running Tests
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.