plumphp / plum-yaml
PlumYaml integrates Symfony Yaml component into Plum.
v0.1
2015-05-17 21:00 UTC
Requires
- plumphp/plum: ~0.2
- symfony/yaml: ~2.6
Requires (Dev)
- mikey179/vfsstream: ~1.4
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.3
README
PlumYaml integrates Symfony Yaml component into Plum. Plum is a data processing pipeline for PHP.
Developed by Florian Eckerstorfer in Vienna, Europe.
Installation
You can install PlumYaml using Composer.
$ composer require plumphp/plum-yaml
Usage
Please refer to the Plum documentation 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
Version 0.1 (17 May 2015)
- Initial release
License
The MIT license applies to plumphp/plum-yaml. For the full copyright and license information, please view the LICENSE file distributed with this source code.