Julio Montoya ae4afdabd6 Updating vendors hace 11 años
..
Exception 3dd9d88e31 Updating vendors hace 11 años
Tests ae4afdabd6 Updating vendors hace 11 años
CHANGELOG.md 32682a9ca8 Updating vendor hace 12 años
Dumper.php 3dd9d88e31 Updating vendors hace 11 años
Escaper.php 32682a9ca8 Updating vendor hace 12 años
Inline.php 3dd9d88e31 Updating vendors hace 11 años
LICENSE 32682a9ca8 Updating vendor hace 12 años
Parser.php ae4afdabd6 Updating vendors hace 11 años
README.md 3dd9d88e31 Updating vendors hace 11 años
Unescaper.php 3dd9d88e31 Updating vendors hace 11 años
Yaml.php 3dd9d88e31 Updating vendors hace 11 años
composer.json 3dd9d88e31 Updating vendors hace 11 años
phpunit.xml.dist 3dd9d88e31 Updating vendors hace 11 años

README.md

Yaml Component

YAML implements most of the YAML 1.2 specification.

use Symfony\Component\Yaml\Yaml;

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

print Yaml::dump($array);

Resources

You can run the unit tests with the following command:

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