-
Notifications
You must be signed in to change notification settings - Fork 17
composer install fails on MAC
Martin Harrer edited this page Nov 22, 2018
·
1 revision
- If you install Vagrant and Virtual Box on MAC the permissions given in the MAC filesystem are mapped into the virtual maschine for the folder code provided by the environment provided on GitHub.
- That can cause problem during
composer install - After cloning with
git clone ... - try
sudo composer install - if even that does not help
exitthe vagrant shell - You have to change permissions in the code-folder in a MAC-Terminal to map them into the image
- In MAC Terminal go to the installation path of your Vagrantfile
cd codesudo chmod 777 onlineshopvagrant sshcd /var/www/html/code/onlineshopsudo composer install- to fix the problem