Skip to content

Releases: mtvbrianking/laravel-xml

1.0.6

13 Jul 14:49
Compare
Choose a tag to compare

Improve xml to array conversation

  • Cast empty elements to null and not array
<element></element>

to

{
-    "element": []
+    "element": ""
}

1.0.5

13 Jul 10:12
Compare
Choose a tag to compare

Improve usage examples in readme

1.0.4

13 Jul 08:49
Compare
Choose a tag to compare

Added documentation for HTTP request macros

1.0.3

04 Jul 19:28
Compare
Choose a tag to compare

Request macros

Get the XML payload for the request.
$request->xml()

Determine if the request is sending XML.
$request->isXml()

Determine if the current request is asking for XML in return.
$request->wantsXml()

1.0.2

04 Jul 08:32
Compare
Choose a tag to compare

Fix middle-ware:

Changed from checking accept to content-type header

@link https://stackoverflow.com/a/11973933/2732184

1.0.1

03 Jul 20:09
Compare
Choose a tag to compare

1.0.0

02 Jul 08:16
Compare
Choose a tag to compare