From 4b8d1186f308a81c75c04e91d9d1cffd82472a68 Mon Sep 17 00:00:00 2001 From: Bec White Date: Thu, 1 Dec 2016 13:38:54 -0600 Subject: [PATCH] Ignore platform requirements when running composer install, since this command will run on the host, but the app 'platform' is actually the VM. --- conf/vagrant/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/vagrant/Vagrantfile b/conf/vagrant/Vagrantfile index d95ea7a..a53489a 100644 --- a/conf/vagrant/Vagrantfile +++ b/conf/vagrant/Vagrantfile @@ -57,7 +57,7 @@ Vagrant.configure(2) do |config| end config.trigger.before [:up, :reload] do - run "composer install" + run "composer install --ignore-platform-reqs" end end