yaml / yamlstar-php
PHP binding for YAMLStar
Package info
pkg:composer/yaml/yamlstar-php
0.1.11
2026-06-23 14:18 UTC
Requires
- php: >=8.0
- ext-ffi: *
This package is not auto-updated.
Last update: 2026-06-24 11:15:54 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