0. 環境
[Laravel] 5.1
1. 問題
composer update を実行すると下記エラーが発生しました。
Writing lock file Generating autoload files > php artisan clear-compiled [ErrorException] Undefined index: HTTP_HOST Script php artisan clear-compiled handling the post-update-cmd event returned with error code 1
2. 解決策
HTTP_HOST でソースをgrepし、 /app/Http/routes.php 内の下記箇所を修正しました。
(修正前)
$_SERVER['HTTP_HOST']
(修正後)
Request::server('HTTP_HOST')