Skip to content

Releases: BorislavSabev/SimpleXmlLoader

Release 1.0

22 Jul 21:57
Compare
Choose a tag to compare

The finalized release v.1.0.0

Summary

This version fully supports the "main goals" that the library defines which are:

  • provide a transparent OOP interface to SimpleXML's simplexml_load_file() and simplexml_load_string() functions
  • handle SimpleXML's internal errors
  • throw catchable Exceptions (XmlLoaderException)

Changes from v0.8.

CHANGED: the method signature of both wrapper functions() to follow the PSR-1 variable naming concentions
FINALIZED: the PHPUnit test suite
FIXED: A behavioral bug connected to passing an empty string to loadString()

Initial Release

03 Jul 06:45
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-release

Includes:

  • a wrapper for simplexml_load_file() exposed via SimpleXmlLoader::loadFile()
  • a wrapper for simplexml_load_string() exposed via SimpleXmlLoader::loadString()
  • LibXML error handling. SimpleXmlLoader will throw a XmlLoaderException on any error

Check the README.md for more information on usage