Я использую cPanel и хочу установить Композитор. Я попытался установить его и обнаружил ошибку при запуске этого,
root@server [/bin]# php installer --check
Some settings on your machine may cause stability issues with Composer.
If you encounter issues, try to change the following:
PHP was compiled with --with-curlwrappers which will cause issues with HTTP authentication and GitHub.
Recompile it without this flag if possible
Могу ли я безопасно игнорировать эту ошибку? С какой проблемой я могу столкнуться в будущем?
Нет необходимости всегда (пере) компилировать PHP. Для меня было достаточно установить php5-curl и перезапустить Apache:
$ sudo apt-get install php5-curl
$ sudo /etc/init.d/apache2 restart
Других решений пока нет …