(macosx10.8)
インストール Composer
問題
公式にあるとおりやったらエラー出た
$ port search composer No match for composer found installer | php #!/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.
解決
オプション追加してインストール
$ curl -s http://getcomposer.org/installer | php -d detect_unicode=Off #!/usr/bin/env php All settings correct for using Composer Downloading... Composer successfully installed to: /Users/cortyuming/dev/php/symfony/composer.phar Use it: php composer.phar