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
in my project I get a bunch of info messages regarding the following deprecation:
User Deprecated: The spaceless tag in "BraincraftedBootstrapBundle:Form:bootstrap.html.twig" at line 6 is deprecated since Twig 2.7, use the "spaceless" filter with the "apply" tag instead.
The fix should be easy to make:
Replace {% spaceless %}...{% endspaceless %}
by {% apply spaceless %}...{% endapply %}
As this would conflict with the current composer.json I suppose a pull request with this change would crash the dependency structure of this project: "twig/twig": "~1.12|~2.0@dev"
Hi folks,
in my project I get a bunch of info messages regarding the following deprecation:
The fix should be easy to make:
Replace
{% spaceless %}...{% endspaceless %}
by
{% apply spaceless %}...{% endapply %}
As this would conflict with the current composer.json I suppose a pull request with this change would crash the dependency structure of this project:
"twig/twig": "~1.12|~2.0@dev"
The spaceless filter has been introduced in Twig 2.7.
https://twig.symfony.com/doc/2.x/filters/spaceless.html
Are there any plans for this project to support such newer library versions in the future or is it just kept for legacy support reasons?
The text was updated successfully, but these errors were encountered: