Bachir Soussi Chiadmi ad38015ea9 first commit : grave core and admin plugin | пре 9 година | |
---|---|---|
.. | ||
Exception | пре 9 година | |
Tests | пре 9 година | |
CHANGELOG.md | пре 9 година | |
Dumper.php | пре 9 година | |
Escaper.php | пре 9 година | |
Inline.php | пре 9 година | |
LICENSE | пре 9 година | |
Parser.php | пре 9 година | |
README.md | пре 9 година | |
Unescaper.php | пре 9 година | |
Yaml.php | пре 9 година | |
composer.json | пре 9 година | |
phpunit.xml.dist | пре 9 година |
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