symfony – 保留指示符“@”无法启动普通标量

使用
PHPUnit 5.2.3与Symfony 2.6.11和php 5.6.18,我收到错误

The reserved indicator “@” cannot start a plain scalar

我的yaml文件很好地用引号转义.
对于我的项目的许多依赖项,都会发生这种情况.

this advice之后,我将不得不更新和/或提交PR.

我是否必须完成所有依赖项?有没有办法避免这种情况?

最佳答案 我和Symfony 2.3有同样的错误.

而不是使用项目目录中的php phpunit.phar,使用供应商./vendor/bin/phpunit中的那个.

或者,您可以使用version 4.8的phpunit-old.phar.此版本对配置文件中的引号不太严格.

资料来源:iget-master评论on this page.

点赞