Composer安装错误

时间:2013-09-03 17:09:55

标签: php install composer-php phar

我一直在我的本地开发环境中测试laravel。当我尝试将我的示例项目上传到我的测试服务器时,我意识到我需要从php 5.2.17升级到5.3.15(并安装composer)。我开始遇到问题了。

我使用http来安装,因为作曲家抱怨ssl(即使我启用了extension=php_openssl.dll

我有以下行为:

$ curl -sS http://getcomposer.org/installer | php -d detect_unicode=Off -d allow_url_fopen=On
#!/usr/bin/env php
Some settings on your machine may cause stability issues with Composer.
If you encounter issues, try to change the following:

The openssl extension is missing, which will reduce the security and stability of Composer.
If possible you should enable it or recompile php with --with-openssl

Downloading...

Composer successfully installed to: /xxx/composer.phar
Use it: php composer.phar

$ php composer.phar
??????????$

因此,我尝试使用的每个命令都通过composer(帮助信息)返回???消息。 发生了什么事?

感谢您的回答,我看不到任何有同样错误的人

1 个答案:

答案 0 :(得分:1)

最后,我更改了php.ini代码(CLI版本)以涵盖作曲家的需求,这有助于我在每个CLI命令中使用额外的文本。然后apache重新启动,最后让它工作。谢谢大家的帮助