You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking into using this yaml extension to improve performance on yaml parsing for an application I'm working on, but have a question.
My current parser, the Symfony yaml library, supports yaml 1.2, however this extension states explicitly that it only supports 1.1. Is there a reason for this?
Also, what would it take to add support for yaml 1.2?
The text was updated successfully, but these errors were encountered:
It would require at least yaml/libyaml#20. I'm not sure what if any changes would be needed in how this library wraps libyaml or interfaces with PHP internals.
Is there a specific YAML 1.2 feature that you know that you depend on?
It's more that we have a large number of yaml documents that we use and we don't know if they are all 100% compatible with yaml 1.1
For this to be a drop-in replacement for symfony/yaml we would need that compatibility, otherwise we have a much bigger project to review every document to make sure we don't get regression bugs.
Hi
I'm looking into using this yaml extension to improve performance on yaml parsing for an application I'm working on, but have a question.
My current parser, the Symfony yaml library, supports yaml 1.2, however this extension states explicitly that it only supports 1.1. Is there a reason for this?
Also, what would it take to add support for yaml 1.2?
The text was updated successfully, but these errors were encountered: