joomla/entities

This package is abandoned and no longer maintained. No replacement package was suggested.

Joomla Entity Project

Package info

github.com/joomla-framework/entities

Type:joomla-package

pkg:composer/joomla/entities

Statistics

Installs: 115

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 3

3.0.3 2025-07-19 17:44 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

GPL-2.0-or-later 37d0dfdbfadc2744a418d95b06debc43be36ddd7

frameworkjoomlaentity

This package is auto-updated.

Last update: 2026-04-26 10:49:33 UTC


README

This packages is no longer maintained and archived. No replacement by the Joomla Project is planned.

The Entity Package 👁 Build Status

👁 Latest Stable Version
👁 Total Downloads
👁 Latest Unstable Version
👁 License

Deprecated

The joomla/entities package has been deprecated. No further updates are planned.

Introduction

The Entities package is an simple redesigned Active Record pattern for working with your database. Each database table has a corresponding Entity which is used to interact with that table. This is based partially from the CMS JTable Active Record pattern and from the various improvements that have been made through the PHP Community since.

Installation via Composer

Add "joomla/entities": "4.0-dev" to the require block in your composer.json and then run composer install.

{
	"require": {
		"joomla/entities": "4.0-dev"
	}
}

Alternatively, you can simply run the following from the command line:

composer require joomla/entities "4.0-dev"

If you want to include the test sources and docs, use

composer require --prefer-source joomla/entities "4.0-dev"