PHPackages                             skema/skema - 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. skema/skema

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

skema/skema
===========

ORM Data Modeling Platform

1.0.2(11y ago)11071MITPHP

Since May 14Pushed 11y ago1 watchersCompare

[ Source](https://github.com/Skema/Skema)[ Packagist](https://packagist.org/packages/skema/skema)[ Docs](http://visop-dev.com)[ RSS](/packages/skema-skema/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (3)Versions (4)Used By (1)

Skema
=====

[](#skema)

Data Modeling Platform

Create database tables along with their data types, values, inputs, outputs, json, &amp; relationship with other tables all polymorphically.

Create table, fields, and first record

```
(new Set('Complete Address'))

	->addField(new Field\Text('Name'))
	->addField(new Field\StreetAddress('Address1'))
	->addField(new Field\StreetAddress('Address2'))
	->addField(new Field\City('City'))
	->addField(new Field\Province('State'))
	->addField(new Field\Country('Country'))
	->addField(new Field\Zip('Zip'))

	->addRecord([
		'name' => 'Township of Pelee',
		'address1' => '1045 WEST SHORE RD',
		'address2' => '',
		'city' => 'Pelee Island',
		'state' => 'ON',
		'country' => 'Canada',
		'zip' => 'N0R 1M0'
	]);
```

Retrieve html inputs

```
(new Set('Complete Address'))->eachHTMLInput(function($arrayOfInputs) {
	foreach ($arrayOfInputs as $input) {
		echo $input;
	}
});
```

Retrieve record and update

```
$record = (new Set('Complete Address'))->getRecord(1);
$record->name = 'Former Township of Pelee';
$record->update();
```

Delete record

```
(new Set('Complete Address'))->getRecord(1)->delete();
```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity65

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~19 days

Total

3

Last Release

4029d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/679099?v=4)[Robert Plummer](/maintainers/robertleeplummerjr)[@robertleeplummerjr](https://github.com/robertleeplummerjr)

---

Top Contributors

[![robertleeplummerjr](https://avatars.githubusercontent.com/u/679099?v=4)](https://github.com/robertleeplummerjr "robertleeplummerjr (13 commits)")

### Embed Badge

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

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

###  Alternatives

[oat-sa/tao-core

TAO core extension

66143.7k122](/packages/oat-sa-tao-core)[phlak/directory-lister

PHP directory lister

2.5k1.4k](/packages/phlak-directory-lister)[egroupware/openid

EGroupware OpenID Connect / OAuth2 server

1228.1k4](/packages/egroupware-openid)

PHPackages © 2026

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