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

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