Day: October 21, 2024
How to Install Composer in CWP/Vesta/Cpanel/Plesk – CentOS/Ubuntu
In this tutorial we’ll install composer quickly and learn how to update composer and use different php version paths with composer, Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Composer…
Install Composer – PHP dependency manager CWP
Composer can be installed in your server quickly and it's very easy to install: First update the server : yum -y update Switch into the /usr/local/src directory. cd /usr/local/src Install Composer by using cURL curl -sS https://getcomposer.org/installer | php To use Composer globally run this below command ensure to use…