PHPackages                             shivoham/value-object-form-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. shivoham/value-object-form-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

shivoham/value-object-form-bundle
=================================

06[2 issues](https://github.com/Shivoham/value-object-form-bundle/issues)PHP

Since Jun 12Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Shivoham/value-object-form-bundle)[ Packagist](https://packagist.org/packages/shivoham/value-object-form-bundle)[ RSS](/packages/shivoham-value-object-form-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

value-object-form-bundle
========================

[](#value-object-form-bundle)

Usage
-----

[](#usage)

#### The Kebab model

[](#the-kebab-model)

```
class Kebab
{
    private $name;

    public function getName()
    {
        return $this->name;
    }

    public function getIdentity()
    {
        return [
            'name' => $this->name,
        ];
    }

    public function setIdentity(Identity $identity)
    {
        $this->name = $identity->name;
        // ...
    }
}
```

#### The "POPO" Kebab identifier

[](#the-popo-kebab-identifier)

```
class Identity
{
    public $name;

    // ...
}
```

#### The Kebab identifier form

[](#the-kebab-identifier-form)

```
use AppBundle\Form\Type\KebabIdentifierType;
use AppBundle\Entity\Kebab;
use AppBundle\Entity\Kebab\Identity;

$this->createForm(KebabIdentifierType::CLASS, $kebab, [
    'object_accessor' => 'getIdentity',
    'object_mutator' => 'setIdentity',
    'value_object_class' => Identity::class
]);
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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://avatars.githubusercontent.com/u/1434539?v=4)[Sylvain Chevalier](/maintainers/Shivoham)[@Shivoham](https://github.com/Shivoham)

### Embed Badge

![Health badge](/badges/shivoham-value-object-form-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/shivoham-value-object-form-bundle/health.svg)](https://phpackages.com/packages/shivoham-value-object-form-bundle)
```

###  Alternatives

[wa72/htmlpagedom

jQuery-inspired DOM manipulation extension for Symfony's Crawler

3383.9M34](/packages/wa72-htmlpagedom)[symfony/requirements-checker

Check Symfony requirements and give recommendations

2014.7M29](/packages/symfony-requirements-checker)[symfony/polyfill-intl-messageformatter

Symfony polyfill for intl's MessageFormatter class and related functions

393.9M21](/packages/symfony-polyfill-intl-messageformatter)[nosh2/nosh2

NOSH ChartingSystem.

771.2k](/packages/nosh2-nosh2)

PHPackages © 2026

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