Joomla ORM Package

Installs: 76

Dependents: 1

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 0

Open Issues: 0

Type:joomla-package

dev-master 2017-11-14 19:48 UTC

This package is auto-updated.

Last update: 2024-03-29 03:28:23 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

The Joomla! ORM package provides a storage access abstraction using repositories for your application.

This package is in a pre-alpha state; use it to get familiar with it and to improve it, but do not use it in production, unless you really know what you are doing.

Installation via Composer

Simply run the following from the command line in your project's root directory (where your composer.json file is):

composer require joomla-x/orm:dev-master

Contributing

Please review https://framework.joomla.org/contribute for information on how to contribute to the Framework's development.

ToDo

  • Implement handling of entity role
    • Don't create reverse relations for lookup tables
  • Implement fieldset handling
  • Relation Handling
    • Implement belongsToMany handling on installation
    • Implement handling of belongsToMany relations in UnitOfWork::checkForChangedRelations()
    • Implement handling of hasMany relations in UnitOfWork::checkForChangedRelations()
    • Implement handling of hasManyThrough relations in UnitOfWork::checkForChangedRelations()
  • Move Entity DTD to a Joomla repository when it is stable enough
  • Replace DTD with XMLSchema, so <xs:alternative test="@type=string"> can be used to specify attributes that are specific to certain field types. See this StackOverflow answer for more information.
  • Apply validation according to definition in EntityBuilder::castToEntity()
  • Use entity name instead of table name in EntityBuilder::resolveHasManyThrough()
  • Add __call() method to Repository to proxy any get*() methods from the DataMappers
  • Implement handler selection according to entity definition
  • Implement entity="@field_name" syntax for belongsTo relations