Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Releases: markwilson/xml-to-json

Fix child array building when attributes are available

17 Jul 15:29
Compare
Choose a tag to compare

Fixes bug in logic for building the array of child objects. Previously, <Child attr="value" /><Child attr="value" /> was returning "Child": {"attr": "value", 0: {"attr": "value"}} - should now return "Child": [{"attr": "value"}, {"attr": "value"}]

Update to array syntax for PHP 5.3 compliance

17 Jul 13:22
Compare
Choose a tag to compare
Merge pull request #1 from jameshalsall/hotfix/empty-text-nodes

Fixing logic where empty text nodes would be created as empty JSON #text...

Initial release of basic XML to JSON logic

17 Jul 09:35
Compare
Choose a tag to compare
0.1.1

Fix composer.json license definition