Skip to content

Instantly share code, notes, and snippets.

@gseilheimer
Forked from hofmannsven/readme.md
Created February 7, 2019 07:12
Show Gist options
  • Save gseilheimer/4a2cf8ce6c318496fc217e62891c4b2f to your computer and use it in GitHub Desktop.
Save gseilheimer/4a2cf8ce6c318496fc217e62891c4b2f to your computer and use it in GitHub Desktop.
Install PHP Composer on Managed Hosting at Domainfactory.

Install Composer on Managed Hosting at Domainfactory

Step 1:

Log in to your Managed Hosting Server via SSH. Create your .bashrc:

touch .bashrc

Step 2:

Add these two lines to the .bashrc:

alias php7cli='/usr/local/bin/php7-71LATEST-CLI'
alias composer='php7cli ~/composer.phar'

Step 3:

Reload .bashrc with

$ source .bashrc

Step 4:

Install Composer with

$ curl -sS https://getcomposer.org/installer | php7cli

Step 5:

Done.

Check the installation with

$ composer --version

You should see something like this:

Composer version 1.7.3 2018-11-01 10:05:06

Your version will probably differ.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment