1.2.1
Fixed
- bug where nested JSON structures would return only partly resolved with
->
instead of having an array structure.
$incoming = [
'field_name->foo' => 'bar',
'field_name->bar->blub' => 'fooBar'
];
// previously resolved to
[
'foo' => 'bar',
'bar->blub' => 'fooBar'
]
// now resolved to
[
'foo' => 'bar',
'bar' => ['blub' => 'fooBar']
]