PHPackages                             scaytrase/symfony-stored-forms-bundle - 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-stored-forms-bundle

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

scaytrase/symfony-stored-forms-bundle
=====================================

Web-configurable forms

3.0.0(10y ago)01511GPL-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-stored-forms-bundle)[ RSS](/packages/scaytrase-symfony-stored-forms-bundle/feed)WikiDiscussions master Synced today

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

[![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 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

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

Recently: every ~13 days

Total

10

Last Release

3999d ago

Major Versions

2.0.2 → 3.0.0-alpha2015-05-27

PHP version history (2 changes)2.0.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-stored-forms-bundle/health.svg)

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

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M386](/packages/easycorp-easyadmin-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M738](/packages/sylius-sylius)[kimai/kimai

Kimai - Time Tracking

4.8k9.0k1](/packages/kimai-kimai)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.1k17.8k](/packages/prestashop-prestashop)[contao/core-bundle

Contao Open Source CMS

1231.6M2.8k](/packages/contao-core-bundle)

PHPackages © 2026

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