jdecool / doctrine-nullable-embeddable
Implement nullable embeddables in Doctrine entities
dev-main
2024-05-10 19:17 UTC
Requires
- php: ^8.1
- doctrine/orm: ^2.9.0 || ^3.0
Requires (Dev)
- ergebnis/composer-normalize: ^2.42
- friendsofphp/php-cs-fixer: ^3.55
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.0
- symfony/cache: ^5.4 || ^6 || ^7
This package is auto-updated.
Last update: 2025-04-04 20:44:14 UTC
README
Implement nullable embeddables in Doctrine entities
Install it
Install the extension using Composer:
$ composer require jdecool/doctrine-nullable-embeddable
Available attributes
JDecool\DoctrineNullableEmbeddable\Attribute\NullableEmbeddable
JDecool\DoctrineNullableEmbeddable\Attribute\NullableEmbedded
Register the mapping listener
Nullable Doctrine embeddables can be automatically managed by reigster the JDecool\DoctrineNullableEmbeddable\Listener\MappingListener
listener class.
$configuration = new Configuration(); // ... $entityManager = EntityManager::create(['driver' => 'pdo_sqlite', 'memory' => true], $configuration); $eventManager = $entityManager->getEventManager(); $eventManager->addEventListener(['loadClassMetadata'], new MappingListener());
Register entity listener manually
Or you can manually register the JDecool\DoctrineNullableEmbeddable\Listener\NullableEmbeddableListener
on an entity.