Bachir Soussi Chiadmi ad38015ea9 first commit : grave core and admin plugin | hace 9 años | |
---|---|---|
.. | ||
Exception | hace 9 años | |
Tests | hace 9 años | |
CHANGELOG.md | hace 9 años | |
Dumper.php | hace 9 años | |
Escaper.php | hace 9 años | |
Inline.php | hace 9 años | |
LICENSE | hace 9 años | |
Parser.php | hace 9 años | |
README.md | hace 9 años | |
Unescaper.php | hace 9 años | |
Yaml.php | hace 9 años | |
composer.json | hace 9 años | |
phpunit.xml.dist | hace 9 años |
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