转到 php.exe 所在的文件夹。
C:\wamp\bin\php\php5.5.12\
在那里打开cmd,然后执行下面的命令。
php -r "readfile('https://getcomposer.org/installer');" | php
composer.phar
将下载到同一文件夹中。
创建以驱动器命名的文件夹composer
(C://
或您希望的任何位置,对于接下来的步骤,请记住路径)。
将composer.phar
文件移动到C://composer
文件夹。
在同一文件夹中创建composer.bat
文件,内容如下
@ECHO OFF
php "%~dp0composer.phar" %*
创建composer
没有任何扩展名的文件。
在 CMD 中运行命令type NUL > composer
将有助于快速完成它,
打开该文件并将下面的内容放入其中。
#!/bin/sh
dir=$(d=$(dirname "$0"); cd "$d" && pwd)
# see if we are running in cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
# cygwin paths start with /cygdrive/ which will break windows PHP,
# so we need to translate the dir path to windows format. However
# we could be using cygwin PHP which does not require this, so we
# test if the path to PHP starts with /cygdrive/ rather than /usr/bin.
if [[ $(which php) == /cygdrive/* ]]; then
dir=$(cygpath -m $dir);
fi
fi
dir=$(echo $dir | sed 's/ /\ /g')
php "${dir}/composer.phar" $*
节省。
现在设置path
,所以我们可以从 cmd 访问 composer。
重新启动您的机器。
或者,explorer
仅在 CMD 中使用以下命令重新启动。
taskkill /f /IM explorer.exe
start explorer.exe
exit
带有屏幕截图的原始文章:http: //aslamise.blogspot.com/2015/07/installing-composer-manually-in-windows-7-using-cmd.html