Skip to content

csantosdev/jenga

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 

Repository files navigation

jenga

Object Relational Mapper (ORM) modeled after Python's Django framework.

Currently supports:

  • MongoDB

In the works:

  • MySQL
  • ElasticSearch
  • Nested document filtering and sorting.
  • CakePHP Model Importer
    • Converts the CakePHP ORM's model relationships into a format that Jenga can work with.

Example:

Comment::objects()->filter(['post.comments.active' => true])
// Nested Document
Comment::objects()->filter([
	'meta' => F::Nested([
		'name' => 'ip_address',
		'value' => '127.0.0.1'
	])
);

About

Django inspired PHP Framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages