feat: Add Stripe provider implementation with webhook support

- Implement Stripe payment provider with PaymentIntent creation
- Add webhook handler with signature verification and event processing
- Handle payment status updates and refund events
- Move Stripe to peer dependencies for better compatibility
- Update README with peer dependency installation instructions
- Document new provider configuration patterns and webhook endpoints

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-16 23:27:13 +02:00
parent 9fbc720d6a
commit d08bb221ec
5 changed files with 279 additions and 30 deletions

View File

@@ -1,2 +1,3 @@
export * from './mollie'
export * from './stripe'
export * from './types'