Composerをインストールしようとしたらエラーが起こったけど解決

Composerを自分のMacにインストールすることになりました。

ターミナルから
>php composer.phar install
としたものの、

[Exception] DateTime::__construct(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected ‘Asia/Tokyo’ for ‘JST/9.0/no DST’ instead

このようなメッセージが表示され、インストールがはじまらない。

Timezoneの設定がされていないことが原因の様子。Googleで検索してみると、下記のサイトを発見。

Symfony2 + Doctrine + MAMP : DateTime::__construct(): It is not safe to rely on the system’s timezone settings. « Croteau’s Blog

で、こちらにあるとおり、自分のMacに、
private/etc/ フォルダにphp.iniが作られていなかったので、
エディタで、下記の内容だけ書いてファイルを作成。

date.timezone = “UTC”

再びインストールしたところ、無事に完了。

さぁ、新しい世界だ!