Releases: mtvbrianking/laravel-xml
Releases · mtvbrianking/laravel-xml
1.0.6
Improve xml to array conversation
- Cast
empty
elements tonull
and notarray
<element></element>
to
{
- "element": []
+ "element": ""
}
1.0.5
Improve usage examples in readme
1.0.4
Added documentation for HTTP request macros
1.0.3
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
Fix middle-ware:
Changed from checking accept
to content-type
header
1.0.1
- Added validation for XML, using XSD
@link https://gist.github.com/mtvbrianking/4d4667cb917673c4afe7ee17f9e148db
1.0.0
Initial pre-release
Support multiple versions