Bachir Soussi Chiadmi ad38015ea9 first commit : grave core and admin plugin | il y a 9 ans | |
---|---|---|
.. | ||
Exception | il y a 9 ans | |
Tests | il y a 9 ans | |
CHANGELOG.md | il y a 9 ans | |
Dumper.php | il y a 9 ans | |
Escaper.php | il y a 9 ans | |
Inline.php | il y a 9 ans | |
LICENSE | il y a 9 ans | |
Parser.php | il y a 9 ans | |
README.md | il y a 9 ans | |
Unescaper.php | il y a 9 ans | |
Yaml.php | il y a 9 ans | |
composer.json | il y a 9 ans | |
phpunit.xml.dist | il y a 9 ans |
YAML implements most of the YAML 1.2 specification.
use Symfony\Component\Yaml\Yaml;
$array = Yaml::parse(file_get_contents(filename));
print Yaml::dump($array);
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Yaml/
$ composer install
$ phpunit