Skip to content

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

Notifications You must be signed in to change notification settings

yalesov/php-yaml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');

About

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages