dualmedia/savepoint-prevent-crash-bundle

Bundle to prevent savepoint rollback from crashing Doctrine in MariaDB

1.1 2025-09-18 12:30 UTC

This package is auto-updated.

Last update: 2025-09-18 12:31:27 UTC


README

Packagist Downloads

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

doctrine/orm#11230

We use it in production for months now with no issues alongside our doctrine-retry-bundle (check it out).