SORM – Simple ORM for PHP5

There are a lot of ORMs out there, but none of them worked the way I wanted to, So I built my own ORM. Modeled a lot after RAILS’ convention over configuration.

  1. Table names and Class names are the same.
  2. Column names and Class attributes are the same.
  3. Simple methods – insert(), update(), get(), delete()
  4. Auto detect Primary key, using conventions.

Link : SORM on Github [Opens in a new tab]

Development Stage : Beta

Leave a Reply

Your email address will not be published. Required fields are marked *