0.0.5 • Published 6 years ago

yaml2php v0.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

yaml2php

Simple library to convert yaml configuration into PHP using yaml-ast-parser.

Installation

This is a Node.js module available through the npm registry. Installation is done using the npm install command:

$ npm install yaml2php

Usage

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;
0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago