我一直在本地开发环境中测试 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 使用的每个命令(关于信息的帮助)都会返回???
消息。发生了什么?
感谢您的回答,我看不到有同样错误的人