I installed the composer on my Mac and it works great.
I have a problem with the composer, when I load oh-my-zsh and typing "composer" in the terminal, it gives me the following random ????%on the screen.
When I turn off oh-my-zsh by renaming .zshrc to home, it will start working again.
Below is my file .bash_profile.
export PATH=/usr/local/bin:$PATH
export PATH=/Applications/MAMP/bin/php/php5.4.10/bin:$PATH
And here is my .zshrc file
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="azhararmar"
plugins=(git)
source $ZSH/oh-my-zsh.sh
export PATH=$HOME/bin:/usr/local/bin:$PATH
What could be wrong?
source
share