PHPackages                             scaytrase/symfony-storable-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. scaytrase/symfony-storable-forms

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

scaytrase/symfony-storable-forms
================================

Web-configurable forms

3.0.0(10y ago)0245GPL-2.0+PHPPHP &gt;=5.4

Since Oct 29Pushed 10y ago1 watchersCompare

[ Source](https://github.com/scaytrase/symfony-storable-forms)[ Packagist](https://packagist.org/packages/scaytrase/symfony-storable-forms)[ RSS](/packages/scaytrase-symfony-storable-forms/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)Dependencies (6)Versions (13)Used By (0)

[![Build Status](https://camo.githubusercontent.com/b37907abbcd22c369104909c34e1dc5f128632be1a9d344b9b79b421f7b4cdd5/68747470733a2f2f7472617669732d63692e6f72672f7363617974726173652f73796d666f6e792d73746f7261626c652d666f726d732e7376673f6272616e63683d666561747572652532466f7665726861756c)](https://travis-ci.org/scaytrase/symfony-storable-forms)

Symfony2 Stored Forms Bundle
============================

[](#symfony2-stored-forms-bundle)

Description
-----------

[](#description)

This bundle was highly inspired by Drupal 6 CCK module mechanics. It allows to dynamically create custom web forms with highly customizable inputs without any change in the source code. The changes are only needed if the set of available field types should be extended.

Here is the attempt to reinvent the wheel on top of the Symfony2 Form components stored with Doctrine2.

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

[](#installation)

The best way to install this bundle is to use composer

```
    composer require "scaytrase/symfony-stored-forms-bundle:~3.0"
```

And include the bundle into the list of application bundles

```
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles = array(
                new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
                \\ ....
                new ScayTrase\StoredFormsBundle\StoredFormsBundle(),

```

Usage
-----

[](#usage)

The simplest way of usage is shown in the test suite

```
        $string = new StringField();
        $string->setName('string_type');

        $text = new TextAreaField();
        $text->setName('text_type');

        $number = new NumberField();
        $number->setName('number_type');

        $choice = new ChoiceField();
        $choice->setName('choice_type');
        $choice->setChoices(array('choice1', 'choice2'));

        /** @var AbstractField[] $fields */
        $fields = array($string, $text, $number, $choice);

        $builder = $this->factory->createBuilder('form');

        foreach ($fields as $field) {
            $field->buildForm($builder);
        }
```

Then just the populate form either with manual `FormInterface::submit($data)` call or via `FormInterface::handleRequest($request)`. Each field from the form will return the `AbstractValue` object (see fields classes for more information). Both fields and values are ready to be stored at the database.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

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 ~29 days

Recently: every ~13 days

Total

10

Last Release

3945d ago

Major Versions

2.0.2 → 3.0.0-alpha2015-05-27

PHP version history (2 changes)2.0PHP &gt;=5.3.3

3.0.0PHP &gt;=5.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/ed906771163ff68cfb365bdd3b8278a3ce1b464f94051ff7ab50c03a30110efe?d=identicon)[scaytrase](/maintainers/scaytrase)

---

Top Contributors

[![scaytrase](https://avatars.githubusercontent.com/u/6578413?v=4)](https://github.com/scaytrase "scaytrase (53 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/scaytrase-symfony-storable-forms/health.svg)

```
[![Health](https://phpackages.com/badges/scaytrase-symfony-storable-forms/health.svg)](https://phpackages.com/packages/scaytrase-symfony-storable-forms)
```

###  Alternatives

[wallabag/wallabag

open source self hostable read-it-later web application

12.6k2.2k](/packages/wallabag-wallabag)[barryvdh/laravel-form-bridge

This packages integrates Symfony Form Component in Laravel.

163354.8k1](/packages/barryvdh-laravel-form-bridge)[leapt/core-bundle

Symfony LeaptCoreBundle

2529.1k4](/packages/leapt-core-bundle)[jbtronics/settings-bundle

A symfony bundle to easily create typesafe, user-configurable settings for symfony applications

9546.7k2](/packages/jbtronics-settings-bundle)[pixelopen/cloudflare-turnstile-bundle

A simple package to help integrate Cloudflare Turnstile on Symfony.

31205.8k3](/packages/pixelopen-cloudflare-turnstile-bundle)[netgen/layouts-core

Netgen Layouts enables you to build and manage complex web pages in a simpler way and with less coding. This is the core of Netgen Layouts, its heart and soul.

3689.4k10](/packages/netgen-layouts-core)

PHPackages © 2026

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