在 Windows 上测试 Symfony flex

Testing Symfony flex on Windows

我无法让 composer 在 Windows.

上的 symfony4 项目中使用 flex receipe

这是完整的过程:

我得到的错误:

 [InvalidArgumentException]
  Could not find package twig.

  Did you mean one of these?
      twig/twig
      slim/twig-view
      latte/latte
      twig/extensions
      timber/timber

我尝试在 sf4 项目中使用本地 composer.phar :

cd C:/sf4
php composer.phar require twig

=> 同样的错误

Composer 似乎忽略了 flex 插件,你知道吗?谢谢!

nicolas-grekas in the following link

的回答

您可以继续使用 this link 中的 symfony 容器,只需查找 flex 使用的别名即可。

在您的情况下,用于 flex 的树枝是 "symfony / twig-bundle"、运行 composer req symfony / twig-bundle

salu2