PHPackages                             necdet/neorm - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. necdet/neorm

ActiveLibrary[Database &amp; ORM](/categories/database)

necdet/neorm
============

Very powerfull orm for mysql that gives you full control on your queries

02PHP

Since Jul 13Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/Necoo33/neorm)[ Packagist](https://packagist.org/packages/necdet/neorm)[ RSS](/packages/necdet-neorm/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Necdetiye Object Relational Mapper For MySql
============================================

[](#necdetiye-object-relational-mapper-for-mysql)

This is a very powerfull orm for mysql that gives you the full control of your queries.

It currently supports `SELECT`, `INSERT`, `DELETE`, `UPDATE`, `COUNT` queries.

It supports this operators: `WHERE`, `OR`, `AND`, `LIMIT`, `OFFSET`, `LIKE`, `ORDER BY`, `GROUP BY`, `JOIN`, `IN`.

it also includes sanitization, make multiple queries with same instance etc.

It usually follows the sql query synthax, for example:

For building: `SELECT * FROM users WHERE name = 'necdet';` query, you have to write this:

```
$orm = new Neorm($host, $username, $password, $db);

// build the query;

$orm = $orm->select("*")->table("users")->where("name", "=", "necdet")->finish();

// then run that query;

$user = $orm->execute()->result(); // if you run the "->result()" method when you do a select query, it returns the rows. If you do insert query, don't run this function.

// since you can do multiple queries with it, restart it however you like:

$orm = $orm->insert(["nickname" => "necoo33", "email" => "arda_etiman_799@windowslive.com"])->table("users")->finish()->execute(); // end insert queries with "execute" function.
```

Also you can run search queries like that:

```
$orm = new Neorm($host, $username, $password, $db);

// that code builds that query:
// "SELECT id, title, price, description FROM products WHERE title = 'your search text' OR description = 'your search text' ORDER BY title ASC LIMIT 5 OFFSET 0;"

$productQuery = $orm->select("id", "title", "price", "description")
                    ->table("products")
                    ->like(["title", "description"], "your search text")
                    ->orderBy("title", "ASC")
                    ->limit(5)
                    ->offset(0)
                    ->finish();

// take the result:

$products = $productQuery->execute()->result();

// then close the database connection if you don't build another query:

$productQuery->close();
```

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance39

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity14

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2e58f9d448feaa00c919caffd3e63a47e42eebd1606bd3a0943f36432606887c?d=identicon)[necdet-arda](/maintainers/necdet-arda)

---

Top Contributors

[![Necoo33](https://avatars.githubusercontent.com/u/105949709?v=4)](https://github.com/Necoo33 "Necoo33 (9 commits)")

### Embed Badge

![Health badge](/badges/necdet-neorm/health.svg)

```
[![Health](https://phpackages.com/badges/necdet-neorm/health.svg)](https://phpackages.com/packages/necdet-neorm)
```

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k115.1M102](/packages/jdorn-sql-formatter)[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[ramsey/uuid-doctrine

Use ramsey/uuid as a Doctrine field type.

90440.3M211](/packages/ramsey-uuid-doctrine)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)[wildside/userstamps

Laravel Userstamps provides an Eloquent trait which automatically maintains `created\_by` and `updated\_by` columns on your model, populated by the currently authenticated user in your application.

7511.7M13](/packages/wildside-userstamps)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
