How to install composer on cPanel server- Locally - inside the user's directory?

Composer is as tool which is used to manage the dependencies between the PHP softwares and required libraries for PHP. It will allow you to declare the standard libraries in PHP.

Though it's not package manager like 'Yum' but it deals with packages or libraries.

System Requirements -

1. PHP 5.3.2+
2. To install packages from sources instead of simple zip archives, you will need git, svn, fossil or hg depending on how the package is version-controlled.
3. Windows, Linux or OSX server.


Installation on Linux server (Locally - inside the user's home folder or where ever they specify)

1. Download the Composer executable for you using the command -
   wget https://getcomposer.org/download/1.2.1/composer.phar
2. Run the following command inside the user's home folder or where ever they specify via SSH -
    
curl -sS https://getcomposer.org/installer | php
3. Make sure the file is set to be owned by that user, by running this command-
   c
hown username:username composer.phar; chown username:username error_log
4. Composer is a PHP binary, so it needs to be like - php composer.phar OR ./composer.phar

Guidelines -

You can install composer to a specific directory by using the --install-dir option and providing a target directory. Options must be appended to -- so that PHP ignores them, like -- --install-dir=bin.
Example : php composer-setup.php --install-dir=bin

You can specify the filename (default: composer.phar) using the --filename option.
Example : php composer-setup.php --filename=composer--version

You can install composer to a specific release by using the --version option and providing a target release.
Example : php composer-setup.php --version=1.0.0-alpha8

Let me know if you've any questions.
  • 5 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset SSH port back to default port 22?

In some situations most of us may come across a problem that we are able to log into the WHM but...

How to setup the root login alert notification email?

Its very important to keep a check on your servers and who logs into the server, From security...

How to enable Open SSL on WHM?

Before enabling open SSL, you can check whether it is already enabled on your server. Please fire...

How to install mod_pagespeed on WHM?

'mod_pagespeed' is module of Apache which is nothing but plugin which is used for compressing the...

How to enable Hot Link Protection in cPanel?

To avoid other sites to use your website's bandwidth, you can enable the hot link protection....

Powered by WHMCompleteSolution