dmytrof / doctrine-modification-events-bundle
Symfony 7/8 DmytrofDoctrineModificationEventsBundle to create and handle events on entities updates
Package info
github.com/dmytrof/DoctrineModificationEventsBundle
Type:symfony-bundle
pkg:composer/dmytrof/doctrine-modification-events-bundle
v2.0.1
2025-12-17 00:00 UTC
Requires
- php: ^8.4
- doctrine/orm: ^3.5
- symfony/event-dispatcher: ^7.0 || ^8.0
- symfony/framework-bundle: ^7.0 || ^8.0
Requires (Dev)
- doctrine/doctrine-bundle: ^3.1
- phpunit/phpunit: ^9.5 || ^10.5 || ^12.4
- roave/security-advisories: dev-latest
- slevomat/coding-standard: ^8.22
- squizlabs/php_codesniffer: ^3.13
- symfony/yaml: ^7.0 || ^8.0
- vimeo/psalm: ^5.18 || ^6.13
README
This bundle helps you to create and handle events on entities updates for your Symfony 7/8 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],
];