mcfedr/plist

A library for dealing with plists

1.5.0 2022-10-21 12:57 UTC

This package is auto-updated.

Last update: 2024-03-21 17:00:52 UTC


README

A simple php library for reading and writing plist files in xml format

Latest Stable Version License Build Status codecov

  • Handling 'invalid' xml characters (such as received from MDM)
  • Should handle larger files

Install

composer require mcfedr/plist

Usage

Reading

$reader = new PlistReader();
$plist = $reader->read($xml);

Writing

$plist = new Plist();
$writer = new PlistWriter();
$xml = $writer->write($plist);