我通过git克隆zf2.5,我通过composer创建项目,但两者都没有composer.phar。只有composer.json和composer.lock。
它在哪里?
答案 0 :(得分:1)
如果你看一下zf2 github,你会发现git中没有composer.phar。
如果您想通过composer安装zf2,则必须安装composer locally或globally。
然后在您的目录php composer.phar require zendframework/zendframework
或composer require zendframework/zendframework
中运行。