dualmedia / savepoint-prevent-crash-bundle
Bundle to prevent savepoint rollback from crashing Doctrine in MariaDB
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.3
- doctrine/doctrine-bundle: ^2 || ^3
- symfony/framework-bundle: ^6.4 || ^7.3
Requires (Dev)
This package is auto-updated.
Last update: 2025-09-18 12:31:27 UTC
README
Savepoint Prevent (Rollback) Crash Bundle
A simple Symfony + Doctrine bundle to help with MariaDB/MySql-based rollback behavior.
Install
Simply composer require dualmedia/savepoint-prevent-crash-bundle
Then add the bundle to your config/bundles.php
file like so
return [ Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], // other bundles ... DualMedia\DoctrineRetryBundle\DoctrineRetryBundle::class => ['all' => true], ];
Setup
No configuration is required. Middleware is enabled along the bundle.
Why
We use it in production for months now with no issues alongside our doctrine-retry-bundle (check it out).