Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle nested array list structures. #53

Merged
merged 1 commit into from
Jun 8, 2024
Merged

Handle nested array list structures. #53

merged 1 commit into from
Jun 8, 2024

Conversation

kleinmann
Copy link
Contributor

Previously, nested structures like list.0.my_key and list.0.another_key were transformed to:

[
  "list" => [
    ['my_key' => '...'],
    ['another_key' => '...']
  ]
]

After this change, they are transformed to:

[
  "list" => [
    [
      'my_key' => '...'
      'another_key' => '...'
    ]
  ]
]

@boxblinkracer
Copy link
Owner

mega,, danke @kleinmann :)
freut mich

@boxblinkracer boxblinkracer merged commit 2b83dc7 into boxblinkracer:main Jun 8, 2024
10 checks passed
@kleinmann kleinmann deleted the fix/nested-array branch June 8, 2024 12:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants