1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-27 13:40:17 +02:00
Magallanes/vendor/Symfony/Component/Yaml
2013-12-19 16:27:53 -02:00
..
Exception Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Dumper.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Escaper.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Inline.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
LICENSE Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Parser.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
README.md Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Unescaper.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00
Yaml.php Remove SPYC library for Yamls and use Symfony/Component/Yaml instead. 2013-12-19 16:27:53 -02:00

Yaml Component

YAML implements most of the YAML 1.2 specification.

use Symfony\Component\Yaml\Yaml;

$array = Yaml::parse($file);

print Yaml::dump($array);

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install
$ phpunit