dotfiles/php/install.fish
2024-02-02 18:09:25 -08:00

13 lines
411 B
Fish
Executable file

#!/usr/bin/env fish
source "$DOT/script/utils.fish"
source "$DOT/homebrew/brew_utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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