tomedio / stripe-symfony
Stripe integration for Symfony applications with Doctrine and API Platform
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.1
- api-platform/core: ^3.0
- doctrine/doctrine-bundle: ^2.5
- doctrine/orm: ^2.10
- stripe/stripe-php: ^10.0
- symfony/config: ^6.0|^7.0
- symfony/dependency-injection: ^6.0|^7.0
- symfony/framework-bundle: ^6.0|^7.0
- symfony/http-kernel: ^6.0|^7.0
- symfony/yaml: ^6.0|^7.0
Requires (Dev)
- phpunit/phpunit: ^9.5
- symfony/browser-kit: ^6.0|^7.0
- symfony/css-selector: ^6.0|^7.0
- symfony/phpunit-bridge: ^6.0|^7.0
README
A Symfony bundle for seamless integration of Stripe payments into your Symfony applications with Doctrine ORM and API Platform support.
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.