我在 XAMPP 上使用 symfony2.1,使用 NetBeans 7.3 作为 IDE。我想friendofsymfony/rest-bundle
通过在需要部分添加这些行来安装包
"friendsofsymfony/rest-bundle": "0.11.0",
然后我右键单击项目,然后 Composer > Update
我在输出窗口上得到的是
D:\xampp\php\php.exe C:\ProgramData\Composer\bin\composer --ansi --no-interaction update
# This file must be saved with Unix line endings, or cygwin will choke
DIR=`dirname "$0"`;
DIRECTORY=$(cd "${DIR}" && pwd)
if command -v 'cygpath' >/dev/null 2>&1; then
DIRECTORY=`cygpath -m $DIRECTORY`;
fi
PHAR="$(echo $DIRECTORY | sed 's/ /\ /g')/composer.phar"
php "${PHAR}" $*
Done.
并且该软件包未安装。
我做对了吗?如何在 NetBeans 上使用 Composer 正确安装包?