mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
d3daa585aa
- add function "composer" - uses local composer if available - add function "composer_install" to install composer to current dir
5 lines
124 B
Fish
5 lines
124 B
Fish
# install composer in the current directory
|
|
function composer_install
|
|
curl -s https://getcomposer.org/installer | php
|
|
end
|