PHPackages                             ee-objects/forms - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. ee-objects/forms

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ee-objects/forms
================

Provides helper objects for generating shared/forms ExpressionEngine development

0.3.1(4y ago)0171MITPHPPHP &gt;=7.1

Since Jan 24Pushed 4y ago1 watchersCompare

[ Source](https://github.com/EE-Objects/Forms)[ Packagist](https://packagist.org/packages/ee-objects/forms)[ RSS](/packages/ee-objects-forms/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (1)Versions (6)Used By (0)

EE Objects Forms
================

[](#ee-objects-forms)

Provides helper objects for generating shared/forms that allow for validation on a per form basis.

### The Problems This Solve

[](#the-problems-this-solve)

Sometimes you just need a simple form that isn't related to any specific data model. This library provides that plus removes the burden of handling Validation of the data.

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

[](#requirements)

- ExpressionEngine &gt;= 5.5
- PHP &gt;= 7.1

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

[](#installation)

Add `ee-objects/forms` as a requirement to your `composer.json`:

```
$ composer require ee-objects/forms
```

### Implementation

[](#implementation)

Once installed, the programmatic flow should be simple. Get the form, validate it, process it:

```
$form = new MyFormObject()
$defaults = [];
$vars = [];
$form->setData($this->settings->settings('cartthrob'));

if ($_SERVER['REQUEST_METHOD'] === 'POST') {

	$form->setData($_POST);
	$result = $form->validate($_POST);
	if ($result->isValid()) {
        //magic time
	}

    $vars['errors'] = $result;
}

$vars['sections'] = $form->generate();
```

Docs
----

[](#docs)

Available in the [Wiki](https://github.com/EE-Objects/Forms/wiki "Wiki") and the [EeObjects Addon](https://github.com/EE-Objects/Example-Addon) repository

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity39

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.

###  Release Activity

Cadence

Every ~7 days

Total

3

Last Release

1607d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/042722642fab9b3e2f7b0711428b40053a2be0d6a1b752e50e7a7fffd06fb712?d=identicon)[mithra62](/maintainers/mithra62)

---

Top Contributors

[![eric-lamb62](https://avatars.githubusercontent.com/u/1008036?v=4)](https://github.com/eric-lamb62 "eric-lamb62 (5 commits)")

### Embed Badge

![Health badge](/badges/ee-objects-forms/health.svg)

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

PHPackages © 2026

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