-
Notifications
You must be signed in to change notification settings - Fork 93
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
Symfony YAML does not parse all YAML #21
Comments
I've encountered the same issue. The problem is that it parses only arrays while |
I'm using typical trick from js world: Yaml::dump(
json_decode(json_encode($openApiSpec->create()->getSerializableData()), true),
flags: Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE
) |
#170 is a duplicate of this one. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While trying to add more tests for more specs from these sources:
I found that symfony YAML fails on a lot of these.
We either need an alternative YAML parser or improve symfony YAML to not fail.
The text was updated successfully, but these errors were encountered: