Skip to content

Instantly share code, notes, and snippets.

@rico3000
Forked from hofmannsven/readme.md
Created November 4, 2021 22:40
Show Gist options
  • Select an option

  • Save rico3000/3ce032a2870d0ff4535b68b1686830dd to your computer and use it in GitHub Desktop.

Select an option

Save rico3000/3ce032a2870d0ff4535b68b1686830dd 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