dotfiles/php/install.fish
2024-02-04 16:00:33 -08:00

15 lines
421 B
Fish
Executable file

#!/usr/bin/env fish
source "$DOT/script/utils.fish"
source "$DOT/homebrew/brew_utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_subtitle PHP
if [ "$(uname)" = Darwin ]
brew_install "Laravel Herd" herd --cask
brew_install PhpStorm phpstorm --cask
else if [ "$(uname)" = Linux ] && cmd_exists snap
execute "sudo snap install phpstorm --classic" PhpStorm
end