yaml/yamlstar-php

PHP binding for YAMLStar

Maintainers

Package info

github.com/yaml/yamlstar-php

Homepage

Issues

Documentation

pkg:composer/yaml/yamlstar-php

Transparency log

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

0.1.15 2026-07-14 13:56 UTC

This package is auto-updated.

Last update: 2026-07-14 13:56:10 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