Julio Montoya ae4afdabd6 Updating vendors há 11 anos atrás
..
Exception 3dd9d88e31 Updating vendors há 11 anos atrás
Tests ae4afdabd6 Updating vendors há 11 anos atrás
CHANGELOG.md 32682a9ca8 Updating vendor há 12 anos atrás
Dumper.php 3dd9d88e31 Updating vendors há 11 anos atrás
Escaper.php 32682a9ca8 Updating vendor há 12 anos atrás
Inline.php 3dd9d88e31 Updating vendors há 11 anos atrás
LICENSE 32682a9ca8 Updating vendor há 12 anos atrás
Parser.php ae4afdabd6 Updating vendors há 11 anos atrás
README.md 3dd9d88e31 Updating vendors há 11 anos atrás
Unescaper.php 3dd9d88e31 Updating vendors há 11 anos atrás
Yaml.php 3dd9d88e31 Updating vendors há 11 anos atrás
composer.json 3dd9d88e31 Updating vendors há 11 anos atrás
phpunit.xml.dist 3dd9d88e31 Updating vendors há 11 anos atrás

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