Pour installer composer, la documentation vous recommande d’utiliser la commande suivante :
curl -s https://getcomposer.org/installer | php
Après avoir lancé cette commande dans le terminal, vous obtenez le message d’erreur suivant :
#!/usr/bin/env 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 detect_unicode setting must be disabled. Add the following to the end of your `php.ini`: detect_unicode = Off A php.ini file does not exist. You will have to create one. If you can not modify the ini file, you can also run `php -d option=value` to modify ini values on the fly. You can use -d multiple times.
Pour installer composer sans devoir éditer votre php.ini, il vous suffit maintenant d’utiliser la commande ci-dessous.
curl -s getcomposer.org/installer | php -d detect_unicode=Off
Si tout c’est bien passé, vous devriez avoir le message suivant apparaître dans votre terminal.
#!/usr/bin/env php All settings correct for using Composer Downloading... Composer successfully installed to: /Users/sebastien/composer.phar Use it: php composer.phar