php-yaml
v0.0.1
Published
YAML wrapper for php-require.
Downloads
19
Readme
Php-yaml
This is a php-require module which packages the spyc YAML parser.
require("../node_modules/php-require/index.php");
$yaml = $require("php-yaml");
$yaml->load("./config.yaml");
$yaml->dump(["a", "b"]);
$yaml->parse($yaml->dump(["c", "d"]));
$config = $require("./config.yaml");