PHPackages                             rtablada/eloquent-ember - 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. rtablada/eloquent-ember

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

rtablada/eloquent-ember
=======================

321283[5 issues](https://github.com/rtablada/eloquent-ember/issues)[1 PRs](https://github.com/rtablada/eloquent-ember/pulls)PHP

Since Jun 5Pushed 12y ago4 watchersCompare

[ Source](https://github.com/rtablada/eloquent-ember)[ Packagist](https://packagist.org/packages/rtablada/eloquent-ember)[ RSS](/packages/rtablada-eloquent-ember/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

This has been deprecated. For the reasoning behind this checkout .

This package is set to work with Ember Data before 1.0 Beta. This may function with the new ActiveModelAdapter but is no longer tested or in active development.

Installation
============

[](#installation)

Just add `rtablada/eloquent-ember` to your composer.json.

Use
===

[](#use)

In your models just extend `Rtablada\EloquentEmber\Model`. Also, list all of your relationships in the `withIds` property on your model.

Now instead of calling `toArray()` call `toEmberArray()`.

Heres an example controller for referece

```
public function index()
{
	return $this->orderModel->all()->toEmberArray();
}

public function store()
{
	$input = Input::json();

	$order = $this->orderModel->create($input->get('order'));
	$order = $order->toArray();

	return Response::json(compact('order'));
}

public function show($id)
{
	$order = $this->orderModel->findOrFail($id);

	return $order->toEmberArray();
}
```

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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/ea9ccd400c74151601341e320935a31d1a9779c5eb49a8f364bc7a0ac75baa32?d=identicon)[rtablada](/maintainers/rtablada)

---

Top Contributors

[![rtablada](https://avatars.githubusercontent.com/u/2532004?v=4)](https://github.com/rtablada "rtablada (20 commits)")

### Embed Badge

![Health badge](/badges/rtablada-eloquent-ember/health.svg)

```
[![Health](https://phpackages.com/badges/rtablada-eloquent-ember/health.svg)](https://phpackages.com/packages/rtablada-eloquent-ember)
```

###  Alternatives

[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k116.5M113](/packages/jdorn-sql-formatter)[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)[pgvector/pgvector

pgvector support for PHP

198628.3k10](/packages/pgvector-pgvector)

PHPackages © 2026

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