dmytrof / doctrine-modification-events-bundle
Symfony 7/8 DmytrofDoctrineModificationEventsBundle to create and handle events on entities updates
Installs: 11 206
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
pkg:composer/dmytrof/doctrine-modification-events-bundle
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],
];