dmytrof / doctrine-modification-events-bundle
Symfony DmytrofDoctrineModificationEventsBundle to create and handle events on entities updates
Installs: 4 845
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.0
- doctrine/orm: ^2.8
- symfony/event-dispatcher: ^5.4 || ^6.0
- symfony/framework-bundle: ^5.4 || ^6.0
Requires (Dev)
- phpunit/phpunit: ^9.5 || ^10.5
- roave/security-advisories: dev-latest
- squizlabs/php_codesniffer: ^3.8
- vimeo/psalm: ^5.18
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],
];