From 54e72a1b069f1925dbaeb1f3b0ecdd6d75948acb Mon Sep 17 00:00:00 2001 From: Muc Date: Thu, 7 Mar 2019 18:41:14 -0300 Subject: [PATCH] Installing unzip utility For improved performance of dependency installation (And prevention of failures) --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index e627ae60835..59abec8fa66 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -121,6 +121,10 @@ Vagrant.configure("2") do |config| yum install -y php-fpm php-cli php-pdo php-mysqlnd php-xml php-soap php-gd php-mbstring php-zip php-intl php-mcrypt php-opcache + echo "\n~~~~~~~~~~~~~~ Install Zip ~~~~~~~~~~~~~~\n" + + yum install -y unzip.x86_64 + echo "\n~~~~~~~~~~~~~~ Install Composer ~~~~~~~~~~~~~~\n" php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && php composer-setup.php