https://github.com/joomla-framework/entities
Joomla Framework Support for Entities
https://github.com/joomla-framework/entities
entities joomla joomla-framework php
Last synced: 11 months ago
JSON representation
Joomla Framework Support for Entities
- Host: GitHub
- URL: https://github.com/joomla-framework/entities
- Owner: joomla-framework
- License: gpl-2.0
- Created: 2018-05-18T18:44:47.000Z (about 8 years ago)
- Default Branch: 3.x-dev
- Last Pushed: 2025-06-29T20:48:19.000Z (11 months ago)
- Last Synced: 2025-06-29T21:23:45.342Z (11 months ago)
- Topics: entities, joomla, joomla-framework, php
- Language: PHP
- Homepage: https://framework.joomla.org/
- Size: 270 KB
- Stars: 2
- Watchers: 15
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# The Entity Package [](https://github.com/joomla-framework/entities)
[](https://packagist.org/packages/joomla/entities)
[](https://packagist.org/packages/joomla/entities)
[](https://packagist.org/packages/joomla/entities)
[](https://packagist.org/packages/joomla/entities)
## 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": "3.0-dev"` to the require block in your composer.json and then run `composer install`.
```json
{
"require": {
"joomla/entities": "3.0-dev"
}
}
```
Alternatively, you can simply run the following from the command line:
```sh
composer require joomla/entities "3.0-dev"
```
If you want to include the test sources and docs, use
```sh
composer require --prefer-source joomla/entities "3.0-dev"
```