PHPackages                             plumphp/plum-yaml - 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. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. plumphp/plum-yaml

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

plumphp/plum-yaml
=================

PlumYaml integrates Symfony Yaml component into Plum.

v0.1(11y ago)023MITPHP

Since May 17Pushed 3y ago1 watchersCompare

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

READMEChangelogDependencies (5)Versions (3)Used By (0)

 [![Plum](https://camo.githubusercontent.com/a81342cbfd6f64a484988488ad37bbd0e665d0f14f65ec655ae986097447bfb6/687474703a2f2f63646e2e666c6f7269616e2e65632f706c756d2d6c6f676f2e737667)](https://camo.githubusercontent.com/a81342cbfd6f64a484988488ad37bbd0e665d0f14f65ec655ae986097447bfb6/687474703a2f2f63646e2e666c6f7269616e2e65632f706c756d2d6c6f676f2e737667)
==================================================================================================================================================================================================================================================================================================================================================================

[](#----)

> PlumYaml integrates [Symfony Yaml](https://github.com/symfony/yaml) component into Plum. Plum is a data processing pipeline for PHP.

[![Latest Version](https://camo.githubusercontent.com/175a2711058b79553cc348a7617aa3e3efb85d1d9ef5d2da442771762796cefc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f706c756d7068702f706c756d2d79616d6c2e737667)](https://packagist.org/packages/plumphp/plum-yaml)[![Build Status](https://camo.githubusercontent.com/20b3aaa5f3f762af3dbf0d29e31b84e9df6610fba36966e0184611f999930155/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f706c756d7068702f706c756d2d79616d6c2e7376673f7374796c653d666c6174)](https://travis-ci.org/plumphp/plum-yaml)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/e7968a41fdbcd03c34b80d3200f1f72bda8f30c357c8ec0c2000678909e67318/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f706c756d7068702f706c756d2d79616d6c2e7376673f7374796c653d666c6174)](https://scrutinizer-ci.com/g/plumphp/plum-yaml/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/2a5125bb86084bc4d050db724635ec6c53250ed1c93030a64a2bd59544ea6223/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f706c756d7068702f706c756d2d79616d6c2e7376673f7374796c653d666c6174)](https://scrutinizer-ci.com/g/plumphp/plum-yaml/?branch=master)[![StyleCI](https://camo.githubusercontent.com/15bdf4345a427a64bd60fd050c12d5f0175ba2194c4de853202cfa595ebaa78a/68747470733a2f2f7374796c6563692e696f2f7265706f732f33343830333434312f736869656c64)](https://styleci.io/repos/34803441)

Developed by [Florian Eckerstorfer](https://florian.ec) in Vienna, Europe.

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

[](#installation)

You can install PlumYaml using [Composer](http://getcomposer.org).

```
$ composer require plumphp/plum-yaml
```

Usage
-----

[](#usage)

Please refer to the [Plum documentation](https://github.com/plumphp/plum/blob/master/docs/index.md) for more information about using Plum in general.

PlumYaml contains two converters. `Plum\PlumYaml\YamlDumpConverter` converts an array into YAML and `Plum\PlumYaml\YamlParseConverter` converts YAML into an array.

```
use Plum\PlumYaml\YamlDumpConverter;
use Plum\PlumYaml\YamlParseConverter;

$dumpConverter = new YamlDumpConverter();
$dumpConverter->convert(['foo' => 'bar'); // -> "foo: bar"

$parseConverter = new YamlParseConverter();
$parseConverter->convert('foo: bar'); // -> ["foo" => "bar"]
```

Change Log
----------

[](#change-log)

### Version 0.1 (17 May 2015)

[](#version-01-17-may-2015)

- Initial release

License
-------

[](#license)

The MIT license applies to plumphp/plum-yaml. For the full copyright and license information, please view the [LICENSE](https://github.com/plumphp/plum-yaml/blob/master/LICENSE) file distributed with this source code.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

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

Total

2

Last Release

4019d ago

### Community

Maintainers

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

---

Top Contributors

[![florianeckerstorfer](https://avatars.githubusercontent.com/u/149201?v=4)](https://github.com/florianeckerstorfer "florianeckerstorfer (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/plumphp-plum-yaml/health.svg)

```
[![Health](https://phpackages.com/badges/plumphp-plum-yaml/health.svg)](https://phpackages.com/packages/plumphp-plum-yaml)
```

###  Alternatives

[daux/daux.io

Documentation generator that uses a simple folder structure and Markdown files to create custom documentation on the fly

825191.0k1](/packages/daux-dauxio)[sspooky13/yaml-standards

Standards for yaml files

11518.3k3](/packages/sspooky13-yaml-standards)[prohalexey/the-choice

253.3k](/packages/prohalexey-the-choice)[opensoft/simple-serializer

Simple Serializer

1914.2k1](/packages/opensoft-simple-serializer)

PHPackages © 2026

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