dotfiles/dot_config/fish/conf.d/30-php.fish

12 lines
281 B
Fish
Raw Normal View History

2024-04-14 18:41:15 -07:00
#!/usr/bin/env fish
if command -v composer &>/dev/null
fish_add_path "$HOME/.config/composer/vendor/bin"
end
2024-04-14 18:41:15 -07:00
if command -v php &>/dev/null
abbr -a p --position command php
abbr -a pa --position command "php artisan"
abbr -a a --position command "php artisan"
end