Julio Montoya ae4afdabd6 Updating vendors | há 11 anos atrás | |
---|---|---|
.. | ||
Exception | há 11 anos atrás | |
Tests | há 11 anos atrás | |
CHANGELOG.md | há 12 anos atrás | |
Dumper.php | há 11 anos atrás | |
Escaper.php | há 12 anos atrás | |
Inline.php | há 11 anos atrás | |
LICENSE | há 12 anos atrás | |
Parser.php | há 11 anos atrás | |
README.md | há 11 anos atrás | |
Unescaper.php | há 11 anos atrás | |
Yaml.php | há 11 anos atrás | |
composer.json | há 11 anos atrás | |
phpunit.xml.dist | há 11 anos atrás |
YAML implements most of the YAML 1.2 specification.
use Symfony\Component\Yaml\Yaml;
$array = Yaml::parse($file);
print Yaml::dump($array);
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install --dev
$ phpunit