mauris/yaml

Mauris Build of the Symfony Yaml Component

1.0.0 2013-05-02 11:55 UTC

This package is not auto-updated.

Last update: 2024-04-08 09:07:38 UTC


README

#Yaml Component

Yaml implements most of the YAML 1.2 specification.

use Symfony\Component\Yaml\Yaml;

$array = Yaml::parse($file);

print Yaml::dump($array);

##Installation

You can install Yaml through Composer:

{
    "require": {
        "mauris/yaml": "1.0.*"
    }
}

Then run:

$ composer install

##Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install --dev
$ phpunit