我创建了一个新的Symfony项目symfony new test
。
然后,如果我检查Symfony要求php bin/symfony_requirements
,它会按预期工作。
仓/ symfony_requirements
require_once dirname(__FILE__).'/../var/SymfonyRequirements.php';
但当我在composer update
和bin/symfony_requirements
中创建web/config.php
时,SymfonyRequirements.php的路径更改为:
bin / symfony_requirements 和 web / config / php
require_once dirname(__FILE__).'/./SymfonyRequirements.php';
很明显,由于SymfonyRequirements的路径错误,因此使用浏览器调用symfony_requirements
或config.php
失败。
这是作曲家第一次像这样混淆。
我有最新的作曲家(1.5.1)。
感谢您的帮助。