【PHP】Laravel unzipがインストールされてない

unzipがインストールされていない時に、Laravelをインストールしようとすると表示されるエラーメッセージについてのメモ

動作環境

  • PHP 7.2.15-0ubuntu0.18.04.1
  • Laravel 5.8

エラーの内容

ComposerでLaravelのインストールをする

composer create-project --prefer-dist laravel/laravel プロジェクトディレクトリ名

以下のメッセージが表示される

As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.
This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.
Installing 'unzip' may remediate them.

原因

「unzip」がインストールされていない

対応方法

「unzip」をインストールする

[root@hostname /]#
apt-get -y install unzip