I tried to install composer via brew per:
In usr/local/bin
(which was not on Mavricks and I had to make personally) I did.
brew tap jose
In my case, I did not copy all project files to the folder where I was running composer install
. So do:
composer.json
) to foldercomposer install
from thereIf you just want to make composer run, create a new composer.json
file with for example:
{
"require": {
"php": ">=5.3.2"
}
}
Then run composer install
.