dborsatto/object-xml

ObjectXml is a PHP library that enables a modern object-oriented approach to XML handling.

0.4.1 2016-01-20 21:02 UTC

This package is auto-updated.

Last update: 2024-03-29 03:03:45 UTC


README

Latest Stable Version Build Status

ObjectXml is a PHP library that enables a modern object-oriented approach to XML handling.

Install

Via Composer

$ composer require dborsatto/object-xml

Usage

use DBorsatto\ObjectXml\Manager;
use DBorsatto\ObjectXml\Node;

$manager = new Manager();
$node = $manager->parseFile('file.xml');

$node = Node::create('root');

License

The MIT License (MIT). Please see License File for more information.