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