PHPackages                             gingteam/redbean - 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. gingteam/redbean

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

gingteam/redbean
================

Extra RedBean ORM

v0.0.4(4y ago)4391MITPHPPHP &gt;=8.0

Since Oct 29Pushed 4y agoCompare

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

READMEChangelog (4)Dependencies (3)Versions (5)Used By (0)

RedBeanPHP 5
============

[](#redbeanphp-5)

[![Build Status](https://camo.githubusercontent.com/8e6c195f716825d13f80ce202d3ce7a73f9c2d3daac3697a165e100349167b38/68747470733a2f2f7472617669732d63692e6f72672f6761626f7264656d6f6f696a2f7265646265616e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/gabordemooij/redbean)[![phpstan](https://github.com/gingteam/redbean/actions/workflows/phpstan.yml/badge.svg)](https://github.com/gingteam/redbean/actions/workflows/phpstan.yml)[![test](https://github.com/gingteam/redbean/actions/workflows/test.yml/badge.svg)](https://github.com/gingteam/redbean/actions/workflows/test.yml)

RedBeanPHP is an easy to use ORM tool for PHP.

- Automatically creates tables and columns as you go
- No configuration, just fire and forget

Installation
------------

[](#installation)

```
composer require gingteam/redbean
```

Quick Example
-------------

[](#quick-example)

How we store a book object with RedBeanPHP:

```
use GingTeam\RedBean\Facade as R;

R::setup('sqlite:'.__DIR__.'/data.db');

$book = model('book');
$book->author = 'Santa Claus';
$book->title = 'Secrets of Christmas';
R::store($book);

$qb = R::createQueryBuilder();

$data = $qb
    ->select('*')
    ->from('book')
    ->fetch();
```

Yep, it's that simple.

More information
----------------

[](#more-information)

For more information about RedBeanPHP please consult the RedBeanPHP website:

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87% 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.

###  Release Activity

Cadence

Every ~4 days

Total

4

Last Release

1639d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2c2372cdd9b3771af93b2baf60fe5e81ab470dc41298fadf7a75deaa2d419d08?d=identicon)[ging-dev](/maintainers/ging-dev)

---

Top Contributors

[![ging-dev](https://avatars.githubusercontent.com/u/42226341?v=4)](https://github.com/ging-dev "ging-dev (20 commits)")[![ciricode](https://avatars.githubusercontent.com/u/88872931?v=4)](https://github.com/ciricode "ciricode (3 commits)")

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/gingteam-redbean/health.svg)

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

###  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)[mongodb/mongodb

MongoDB driver library

1.6k64.0M540](/packages/mongodb-mongodb)[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)[usmanhalalit/laracsv

A Laravel package to easily generate CSV files from Eloquent model.

6151.7M4](/packages/usmanhalalit-laracsv)

PHPackages © 2026

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