dualmedia/savepoint-prevent-crash-bundle

Bundle to prevent savepoint rollback from crashing Doctrine in MariaDB

Maintainers

Package info

github.com/dualmediaspzoo/savepoint-prevent-crash-bundle

Type:symfony-bundle

pkg:composer/dualmedia/savepoint-prevent-crash-bundle

Statistics

Installs: 162

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1 2025-09-18 12:30 UTC

This package is auto-updated.

Last update: 2026-02-18 13:19:43 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).