The errors you get indicate that the application is not parsing your "config.yml" because "you cannot determine the display element in the sequence."
This means that in the yml file when defining array values ββyou cannot provide both matching records in the "key: value" form and sequence entries in the "- element" form - all values ββmust be either one or the other.
So this is normal:
group: key: value key: value
This is also normal:
group: - item - item
It is not normal:
group: key: value - item
Errors suggest the presence of the latter form in your config.yml, although if so, this should cause problems with the launch of your application in the browser, and not just under phpunit.
source share