Search by

yaml / yamlstar-php

ingy

PHP binding for YAMLStar

0.1.21 2026-09-08 20:13 UTC

This package is auto-updated.

Last update: 2026-09-08 20:14:02 UTC


README

PHP binding for the YAMLStar shared library.

<?php
require 'vendor/autoload.php';

$ys = new YAMLStar\YAMLStar();
$data = $ys->load("key: value");
$text = $ys->dump(["foo" => [["bar"]]]);
$ys->close();

Install the matching libyamlstar release before using this package:

curl -sSL https://yamlstar.org/install | LIB=1 bash
composer require yaml/yamlstar-php