我有php版本5.6,我需要为我的项目安装作曲家。我正在使用以下命令进行安装:
curl -sS https://getcomposer.org/installer | php
php -r "readfile('https://getcomposer.org/installer');" | php
我收到此错误消息:
Some settings on your machine make Composer unable to work properly.
Make sure that you fix the issues listed below and run this script again:
The phar extension is missing.
Install it or recompile php without --disable-phar
该错误告诉您必须为.phar
文件启用或安装扩展。
因为您没有提供有关您的系统,操作系统等的任何信息,所以我无法为您提供更多帮助,以帮助您找到正确的方向。一般来说,你不太可能需要重新编译PHP,你必须搜索当前PHP版本的源代码如何获取或启用所述扩展。