joomla/entities
Joomla Entity Project
Installs: 89
Dependents: 0
Suggesters: 0
Stars: 1
Watchers: 14
Forks: 5
Open Issues: 2
Type:joomla-package
Requires
- php: ~7.0
- joomla/database: ~2.0@dev
- joomla/string: ~2.0@dev
- joomla/event: ~2.0@dev
- nesbot/carbon: ~1.29
- doctrine/inflector: ~1.2
Requires (Dev)
- joomla/coding-standards: ~2.0@alpha
- phpunit/phpunit: ~6.3
- phpunit/dbunit: ~3.0
- joomla/test: ~1.2
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": "dev-master"
to the require block in your composer.json and then run composer install
.
{ "require": { "joomla/entities": "dev-master" } }
Alternatively, you can simply run the following from the command line:
composer require joomla/entities "dev-master"