tomedio/stripe-symfony 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tomedio/stripe-symfony

最新稳定版本:0.2.3

Composer 安装命令:

composer require tomedio/stripe-symfony

包简介

Stripe integration for Symfony applications with Doctrine and API Platform

README 文档

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.

统计信息

  • 总下载量: 26
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-10