Skip to content

1.2.1

Compare
Choose a tag to compare
@Naoray Naoray released this 03 Feb 17:21
· 41 commits to main since this release

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']
]