joomla / entities
Joomla Entity Project
Fund package maintenance!
joomla
community.joomla.org/sponsorship-campaigns.html
Installs: 108
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 17
Forks: 7
Open Issues: 3
Type:joomla-package
Requires
- php: ^8.1.0
- ext-json: *
- doctrine/inflector: ^1.2
- joomla/database: ^3.0
- joomla/event: ^3.0
- joomla/string: ^3.0
- nesbot/carbon: ^2.51
Requires (Dev)
- joomla/test: ^3.0
- phan/phan: ^5.4.2
- phpstan/phpstan: ^1.10.7
- phpunit/phpunit: ^9.5.28
- squizlabs/php_codesniffer: ^3.7.2
This package is auto-updated.
Last update: 2024-10-08 21:11:39 UTC
README
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
.
{ "require": { "joomla/entities": "3.0-dev" } }
Alternatively, you can simply run the following from the command line:
composer require joomla/entities "3.0-dev"
If you want to include the test sources and docs, use
composer require --prefer-source joomla/entities "3.0-dev"