PHPackages                             tangible/object - 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. tangible/object

ActiveLibrary

tangible/object
===============

A WordPress tool suite for building data-driven interfaces with a clean extensible architecture.

019[4 issues](https://github.com/TangibleInc/object/issues)[3 PRs](https://github.com/TangibleInc/object/pulls)PHPCI passing

Since Feb 16Pushed 1mo agoCompare

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

READMEChangelogDependenciesVersions (6)Used By (0)

Tangible Object
===============

[](#tangible-object)

A WordPress tool suite for building data-driven admin interfaces with a clean, layered architecture.

**[View Full Documentation →](https://tangibleinc.github.io/object/)**

Quick Start
-----------

[](#quick-start)

The easiest way to use Tangible Object is through the **DataView** API:

```
use Tangible\DataView\DataView;
use Tangible\RequestHandler\Validators;

add_action('admin_menu', function() {
    $view = new DataView([
        'slug'   => 'contact_entry',
        'label'  => 'Contact Entry',
        'fields' => [
            'name'      => 'string',
            'email'     => 'email',
            'message'   => 'text',
            'subscribe' => 'boolean',
        ],
        'ui' => [
            'menu_label' => 'Contact Entries',
            'icon'       => 'dashicons-email',
        ],
    ]);

    $view->get_handler()
        ->add_validator('name', Validators::required())
        ->add_validator('email', Validators::required())
        ->add_validator('email', Validators::email());

    $view->register();
});
```

This creates:

- A Custom Post Type for your data
- An admin menu page with list, create, and edit views
- Form handling with validation and sanitization
- Full CRUD operations

Features
--------

[](#features)

- **Declarative configuration** - Define your data structure once, get forms and validation automatically
- **Multiple storage backends** - Custom Post Types, database tables, or WordPress options
- **Flexible layouts** - Sections, tabs, sidebars, and nested structures
- **Built-in validation** - Required fields, email, min/max, custom validators
- **Lifecycle hooks** - React to create, update, and delete operations
- **Repeater fields** - Manage collections of sub-items
- **Multiple renderers** - Plain HTML or rich Tangible Fields components

Architecture
------------

[](#architecture)

For advanced customization, Tangible Object exposes four underlying layers:

1. **DataSet** - Define field types and coercion rules
2. **EditorLayout** - Compose the editor structure (sections, tabs, fields)
3. **Renderer** - Generate HTML output from the layout
4. **RequestHandler** - Handle CRUD operations with validation

[Learn more about the architecture →](https://tangibleinc.github.io/object/advanced/architecture)

Documentation
-------------

[](#documentation)

- [Getting Started](https://tangibleinc.github.io/object/getting-started/quick-start)
- [DataView Configuration](https://tangibleinc.github.io/object/dataview/configuration)
- [Field Types](https://tangibleinc.github.io/object/dataview/field-types)
- [Layouts](https://tangibleinc.github.io/object/layouts/overview)
- [Validation](https://tangibleinc.github.io/object/dataview/validation)
- [Examples](https://tangibleinc.github.io/object/examples/settings-page)

Requirements
------------

[](#requirements)

- PHP 8.0+
- WordPress 5.0+

License
-------

[](#license)

MIT

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance61

Regular maintenance activity

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 64.3% 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/5aff2cd01d35343d011fea3936d03f76d8636cd577ee4509242bf15b6d974aff?d=identicon)[tangiblebot](/maintainers/tangiblebot)

---

Top Contributors

[![zinigor](https://avatars.githubusercontent.com/u/374293?v=4)](https://github.com/zinigor "zinigor (27 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (13 commits)")[![eliot-akira](https://avatars.githubusercontent.com/u/5352434?v=4)](https://github.com/eliot-akira "eliot-akira (2 commits)")

### Embed Badge

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

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

PHPackages © 2026

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