Bachir Soussi Chiadmi 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
..
Exception 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Tests 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
CHANGELOG.md 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Dumper.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Escaper.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Inline.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
LICENSE 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Parser.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
README.md 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Unescaper.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
Yaml.php 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
composer.json 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans
phpunit.xml.dist 344dae1543 import from la bonne adresse and first refactoring for ouidade.com il y a 7 ans

README.md

Yaml Component

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);

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Yaml/
$ composer install
$ phpunit