mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
11 lines
230 B
Bash
11 lines
230 B
Bash
#alias
|
|
if which composer.phar &> /dev/null; then
|
|
if which composer &> /dev/null; then
|
|
else
|
|
alias composer="composer.phar"
|
|
fi
|
|
else
|
|
if which composer &> /dev/null; then
|
|
alias composer.phar="composer"
|
|
fi
|
|
fi
|