php composer.phar 更新不适用于 Symfony 安装不适用于、composer、php、Symfony

2023-09-06 16:20:57 作者:薄荷绿

我在 Windows 7 64 位上运行 WAMP.PATH 变量设置为 c:wampinphpphp5.3.13

I'm running WAMP on Windows 7 64 Bits. The PATH variable is set to c:wampinphpphp5.3.13

我正在尝试安装 Symfony,但我不明白为什么第一行运行而不是第二行:

I'm trying to install Symfony and I do not understand why first line runs and not the second:

运行成功:

php c:wampinphpphp5.3.13composer.phar update

此行失败:

This line fails:

php composer.phar update

出现错误:

无法打开输入文件:composer.phar"

"Could not open input file: composer.phar"

这能解释什么?

get_include_path 返回:`

get_include_path returns : `

.;C:wampinphpphp5.3.13phpPEAR`.

.;C:wampinphpphp5.3.13phpPEAR`.

这是否意味着如果 composer.phar 不在 PEAR 目录中'php composer.phar update' 将不起作用?

Does this mean that if composer.phar is not in PEAR directory 'php composer.phar update' will not work?

推荐答案

你应该试试这个:

composer.phar 更新

Codeforest使用composer创建symfony应用

composer.phar update

为什么 php 会知​​道你的 $PATH 变量?

Why would php be aware of your $PATH variable?

另外,我认为 $PATH 仅在处理命令行的第一个单词时由您的 shell 使用.

Plus, I think $PATH is only used by your shell when dealing with the first word of your command line.