Julio Montoya ae4afdabd6 Updating vendors | hace 11 años | |
---|---|---|
.. | ||
Exception | hace 11 años | |
Tests | hace 11 años | |
CHANGELOG.md | hace 12 años | |
Dumper.php | hace 11 años | |
Escaper.php | hace 12 años | |
Inline.php | hace 11 años | |
LICENSE | hace 12 años | |
Parser.php | hace 11 años | |
README.md | hace 11 años | |
Unescaper.php | hace 11 años | |
Yaml.php | hace 11 años | |
composer.json | hace 11 años | |
phpunit.xml.dist | hace 11 años |
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