haydenwu / kdl
A PHP implementation for the KDL data format (forked)
Requires
- php: >=8.2
- parsica-php/parsica: ^0.8.1
Requires (Dev)
- ext-json: *
- phpbench/phpbench: ^1.0
- phpunit/phpunit: ^9.5.0
- squizlabs/php_codesniffer: ^3.5.8
- vimeo/psalm: dev-php84
This package is auto-updated.
Last update: 2026-03-01 06:11:45 UTC
README
KDL-PHP
A PHP library for the KDL Document Language (pronounced like "cuddle").
This is my fork of the official implementation in PHP, which hasn't been maintained for a while now. I'm partially implementing features of KDL v2 where I need; it may or may not parse your KDL v2 document fully and properly.
Installation
The KDL library can be included to your project using Composer:
composer require haydenwu/kdl:dev-2_0_support
Limitations
For now, this library only supports parsing.
Parsing a 45 line file with a tree depth of 5 is likely to take about 30ms currently - this speed is improving all the time with releases of the underlying parser library. This library favours correctness over performance - however, the aim is for parse speed to improve to a point of being reasonable.
The parser uses Parsica as an underlying parsing library in order to map fairly directly and clearly onto the published KDL grammar - Parsica uses FP principles, and one result of this is that the call stack depth used during parsing may be high. Be warned if you are using e.g. xdebug, as parsing may exceed any normal maximum stack depth that you may set.
Examples
$document = Kdl\Kdl\Kdl::parse($kdlString);
foreach ($document as $node) {
$node->getName(); //gets the name for the node @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#node
$node->getValues(); //gets a list of values for a node @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#value
$node->getProperties(); //gets an associative array of properties @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#property
foreach ($node->getChildren() as $child) {
$child->getName(); //name for the child
//etc
}
}
License
The code is available under the MIT license.