Requirements and Restrictions - Indaxia/doctrine-orm-transformations GitHub Wiki
Requirements
- PHP version 5.4+
- Doctrine ORM 2.5+
Restrictions
- Won't work with SimpleAnnotationDriver due to internal namespace structure;
- Composite foreign keys support is not implemented yet;
- Collection cannot contain duplicates of the same Entity, it leads to undefined behavior;
- Read acessor method (getter) for Entity identifier is hardcoded to
'get'.ucfirst($idField) where $idField is the identifier property name;
- Any timezone is converted to UTC and vise versa;
- Any date and/or time type for ITransformable::fromArray must be in JavaScript ISO8601 format, a PHP DateTime object or null (if the column has nullable flag);