yalesov/yaml

Wrapper around Symfony's Yaml parser - added __DIR__ support.


Keywords
yaml, yml
License
ISC

Documentation

Yalesov\Yaml

Build Status

Wrapper around Symfony's Yaml parser - added __DIR__ support.

Installation

Composer:

{
  "require": {
    "yalesov/yaml": "2.*"
  }
}

Usage

Two constants added:

  • __DIR__: behave as expected
  • ___DIR___ (an extra underscore around): literal __DIR__

Parse a Yaml file foo/bar.yml:

use Yalesov\Yaml\Yaml;
$parsedArray = Yaml::parse('foo/bar.yml');

Parse a Yaml string foo: bar (of course, neither __DIR__ nor ___DIR___ would be available)

use Yalesov\Yaml\Yaml;
$parsedArray = Yaml::parse('foo: bar');