zf-doctrine-hydration-module icon indicating copy to clipboard operation
zf-doctrine-hydration-module copied to clipboard

Configurable Doctrine hydrators for ZF2

Results 7 zf-doctrine-hydration-module issues
Sort by recently updated
recently updated
newest added

As Zend Framework is migrated now to Laminas and we have also released DoctrineModule 3.0 with Laminas support we need migrate also this library.

I put this together in preparation for doctrine-mongo-orm-module supporting Laminas. I found the Grumphp hooks a problem because they try to run phpunit without using Docker. So, I hope you'll...

Each of the Hydrator strategies are configured in the service manager as invokable services. However within the module, the Hydrator strategy objects are instantiated from the class directly rather than...

enhancement

When a naming strategy is set for an object, the strategy is not applied to embedded objects. example object: ``` php $name //mapped to @String $embedMany //mapped to @EmbedMany ```...

enhancement

When hydrating referenced documents the current logic assumes that an identifier will be passed and that a document with that identifier already exists. This may not be the case, however,...

Regardless of the `by_value` setting, `AbstractMongoStrategy::hydrateCollection` always attaches `AllowRemoveByValue` strategy. When `by_value` is false it should attach `AllowRemoveByReference` instead.

I'm, working with three entities: Albums, Artists and Tracks. They have a many-to-many relationship with doctrine. And I'm trying to update the Artists and Tracks list for a particular venue....