I have a private project hosted on Bit Bucket. I have an SSH key setup. Is there a way I can use the php composer create-project vendor/name path command in the
Since this post has some traction, I thought I'd add another solution which I use. Open up ~/.bash_profile
and add something like
function _cmsname {
composer create-project vendor/package --repository-url=http://private.repo.url.co.uk/ --stability=dev "$1"
}
alias cmsname=_cmsname
and the just type cmsname projectname in terminal.