Simple library to convert yaml configuration into PHP using yaml-ast-parser.
This is a Node.js module available through the
npm registry. Installation is done using the
npm install
command:
$ npm install yaml2php
Read from file:
import { fromFile } from 'yaml2php';
try {
var php = fromFile('example.yml');
console.log(php);
} catch (e) {
console.log(e);
}
Read from string:
import { fromString } from 'yaml2php';
try {
var php = fromString(`---
key1:
- 1
- 'Two'
- false
`);
console.log(php);
} catch (e) {
console.log(e);
}
For both functions, there are two options as second and third parameters. These make the code more readable
function fromFile(filename: string, pretty?: boolean, indent?: number): string;
function fromString(value: string, pretty?: boolean, indent?: number): string;