ThomasWeinert / FluentDOM-YAML-Symfony

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FluentDOM-YAML-Symfony

License CI Total Downloads Latest Stable Version Latest Unstable Version

Adds support for YAML to FluentDOM. It adds a loader and a serializer. It uses the Symfony/YAML component.

Installation

composer require fluentdom/yaml-symfony

Loader

The loader registers automatically. You can trigger it with the types yaml and text/yaml.

$document = FluentDOM::load($yaml, 'text/yaml');
$query = FluentDOM($yaml, 'text/yaml');

Serializer

The serializer needs to be created for a document and can be cast into a string.

echo new FluentDOM\YAML\Symfony\Serializer($document);
$query = FluentDOM($yaml, 'text/yaml');
echo $query;

About

License:MIT License


Languages

Language:PHP 100.0%