ljy/spyc

A simple YAML loader/dumper class for PHP

Maintainers

Details

github.com/jyiL/spyc

Source

0.6.3 2018-03-13 09:39 UTC

This package is auto-updated.

Last update: 2024-03-24 15:32:56 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Spyc is a YAML loader/dumper written in pure PHP. Given a YAML document, Spyc will return an array that you can use however you see fit. Given an array, Spyc will return a string which contains a YAML document built from your data.

YAML is an amazingly human friendly and strikingly versatile data serialization language which can be used for log files, config files, custom protocols, the works. For more information, see http://www.yaml.org.

Spyc supports YAML 1.0 specification.

Using Spyc

Using Spyc is trivial:

<?php
use Spyc\Spyc;
$Data = Spyc::YAMLLoad('spyc.yaml');

or (if you prefer functional syntax)

<?php
use Spyc\Spyc;
$Data = spyc_load_file('spyc.yaml');

License

Spyc is open-sourced software licensed under the WTFPL license.