Have anyone seen an ORM for PHP, that does not require me to define everything at the development time?
For example, I would like "rating" field to be added to "User" object by "Rating" plugin (using hooks for instance). I would like validation rules for this new field also to be added by the plugin. Of course, plugin will also do ALTER TABLE to add a new field into "user" table in the database on installation.
ADDED: I don't need ORM's that 'guess' database structure in runtime (like DataMapper ORM). I need plugins (php scripts) to be able to add fields to objects.