After update the composer.plugin.zsh the c* command can't work any more.
I also leave a comment on the #5886
My composer lives in the *composer/vendor/bin, installed by composer global require composer/composer. I wonder you guys installed composer in system bin directory by other way like apt-get or brew,so composer command should work before the *composer/vendor/bin set in the PATH.
However I'd like my composer lives in *composer/vendor/bin because I'd like to have my composer up to date everytime I ran cgu.
So is there some better way? maybe use find to find composer bin file in the user home directory and add it's path to PATH? Sorry that I am not familiar with shell so I can't tell what the exact code looks like.
current workaround
add composer vendor bin path manually in .zshrc
export PATH="$PATH:$HOME/.composer/vendor/bin"
or make a symlink in the /usr/local/bin
Most helpful comment
current workaround
add composer vendor bin path manually in
.zshrcor make a symlink in the
/usr/local/bin