php - Composer [Mac] - Unable to use composer command on cmd

Solution:
I would advice to use Homebrew to install/upgrade Composer (and all other software on your Mac!). It's a "default" package manager in the community at the moment.
Just install Homebrew and then — Composer
brew install composer
Answer
Solution:
There should be no/usr/local/bin/composer
directory, but/usr/local/bin
. So, make sure you install it correctly:
Delete the folder
$ sudo rm -rf /usr/local/bin/composer
Download it again, then move it this way:
$ mv composer.phar /usr/local/bin/composer
Then make sure/usr/local/bin
is in your path
$ echo $PATH
And you must see
$ /usr/local/bin
If it's not in your path you'll have to add this to your .bashrc (or whatever you are using as command line):
$ export PATH=$PATH:/usr/local/bin
And you should be good to
composer update
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: property [id] does not exist on this collection instance.
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.