Julio Montoya ae4afdabd6 Updating vendors | пре 11 година | |
---|---|---|
.. | ||
Exception | пре 11 година | |
Tests | пре 11 година | |
CHANGELOG.md | пре 12 година | |
Dumper.php | пре 11 година | |
Escaper.php | пре 12 година | |
Inline.php | пре 11 година | |
LICENSE | пре 12 година | |
Parser.php | пре 11 година | |
README.md | пре 11 година | |
Unescaper.php | пре 11 година | |
Yaml.php | пре 11 година | |
composer.json | пре 11 година | |
phpunit.xml.dist | пре 11 година |
YAML implements most of the YAML 1.2 specification.
use Symfony\Component\Yaml\Yaml;
$array = Yaml::parse($file);
print Yaml::dump($array);
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install --dev
$ phpunit