dmytrof/doctrine-modification-events-bundle

Symfony DmytrofDoctrineModificationEventsBundle to create and handle events on entities updates

v1.5.2 2023-12-29 00:00 UTC

This package is auto-updated.

Last update: 2024-03-29 22:00:17 UTC


README

This bundle helps you to create and handle events on entities updates for your Symfony 4/5 application

Installation

Step 1: Install the bundle

$ composer require dmytrof/doctrine-modification-events-bundle 

Step 2: Enable the bundle

<?php
    // config/bundles.php
    
    return [
        // ...
        Dmytrof\DoctrineModificationEventsBundle\DmytrofDoctrineModificationEventsBundle::class => ['all' => true],
    ];