Feature: #86881 - Support of Features in expression language

See forge#86881

Description

Support for feature toggle check in the symfony expression language DefaultFunctionProvider is provided. With the new function feature() the feature toggle can be checked.

[feature("TypoScript.strictSyntax")]
# This condition matches if the feature toggle "TypoScript.strictSyntax" is true
[END]

[feature("TypoScript.strictSyntax") === false]
# This condition matches if the feature toggle "TypoScript.strictSyntax" is false
[END]