Use da documentação do github para instalar
https://github.com/shivammathur/homebrew-php
Warning: /home/linuxbrew/.linuxbrew/bin is not in your PATH.
Adicione o ~/.fish_profile
set -gx PATH /home/linuxbrew/.linuxbrew/bin $PATH
Depois adicione o código abaixo no final da linha de ~/.config/fish/config.fish se não tiver nada semelhands
## Environment setup
# Apply .profile: use this to put fish compatible .profile stuff in
if test -f ~/.fish_profile
source ~/.fish_profile
end
Reinicia o terminal com o comando
fish
Verifique se o diretório do Homebrew foi adicionado ao seu PATH com o comando.
echo $PATH
Você deve ver /home/linuxbrew/.linuxbrew/bin listado.
Abra o arquivo de perfil do seu shell. Se você estiver usando bash, será ~/.bashrc ou ~/.bash_profile. Se você estiver usando zsh, será ~/.zshrc.
Adicione a seguinte linha ao final do arquivo:
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
Salve e feche o arquivo.
Carregue as novas configurações em sua sessão atual do shell com o comando source. Se você editou ~/.bashrc ou ~/.bash_profile, use
source ~/.bashrc
ou
source ~/.bash_profile.
Se você editou ~/.zshrc, use
source ~/.zshrc.
Verifique se o diretório do Homebrew foi adicionado ao seu PATH com o comando.
echo $PATH
Você deve ver /home/linuxbrew/.linuxbrew/bin listado.