tomedio/stripe-symfony

Stripe integration for Symfony applications with Doctrine and API Platform

0.2.3 2025-03-11 13:23 UTC

This package is auto-updated.

Last update: 2025-03-11 13:23:34 UTC


README

A Symfony bundle for seamless integration of Stripe payments into your Symfony applications with Doctrine ORM and API Platform support.

Deploy Documentation

Features

  • Symfony Integration: Seamlessly integrates with Symfony, Doctrine ORM, and API Platform
  • Customer Management: Easily manage customers with billing address support
  • Subscription Handling: Complete subscription lifecycle with trial period support
  • Invoice Tracking: Track and manage invoices with automatic status updates
  • Webhook Processing: Built-in webhook handling with Symfony events
  • Pay-per-action Support: Implement usage-based billing for your API
  • Prepaid Credits System: Allow users to purchase and use credits
  • Secure Checkout: Process payments securely via Stripe Checkout

Quick Installation

1. Configure Symfony Flex (Optional)

This bundle provides custom Symfony Flex recipes to simplify the installation process. To use them, add the following to your application's composer.json file:

{
    "extra": {
        "symfony": {
            "endpoint": [
                "https://raw.githubusercontent.com/tomedio/flex-recipes/main/index.json",
                "flex://defaults"
            ]
        }
    }
}

2. Install via Composer

composer require tomedio/stripe-symfony

3. Register the bundle

// config/bundles.php
return [
    // ...
    Tomedio\StripeBundle\StripeBundle::class => ['all' => true],
];

4. Add environment variables

The bundle will automatically create the necessary configuration files during installation. You just need to add the required environment variables to your .env file:

# .env
STRIPE_API_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_SUCCESS_URL=https://your-domain.com/payment/success
STRIPE_CANCEL_URL=https://your-domain.com/payment/cancel

Documentation

For detailed implementation guides, interface references, and examples, please visit our comprehensive documentation:

https://tomedio.github.io/stripe-symfony/

The documentation includes:

  • Complete installation and configuration instructions
  • Interface implementation examples
  • Subscription plan management
  • Webhook handling
  • API Platform integration
  • Pay-per-action implementation
  • Credit system setup
  • And much more!

License

This bundle is released under the MIT License.