eclogue / lily
There is no license information available for the latest version (dev-master) of this package.
dev-master
2018-05-28 08:54 UTC
Requires
- symfony/console: ^4.1@dev
- symfony/yaml: ^4.1@dev
This package is auto-updated.
Last update: 2024-10-21 20:28:13 UTC
README
Lily is a yaml parser that support import .yaml file from submodule
usage
composer require superbogy/Lily
yaml :
parameters: $ref: ./paramters/index.yaml paths: $ref: ./routers/index.yaml definitions: $ref: ./definitions/index.yaml
example:
use Lily\Parser; $root = ROOT; $lily = new Parser($root, $entry); $data = $lily->run();