Answers for "composer install ubuntu 20.04"

3

composer install ubuntu 20.04

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '756890a4488ce9024fc62c56153228907f1545c228516cbf63f885e036d37e9a59d27d63f46af1d4d07ee0f76181c7d3') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"

#move composer.phar, so you can call composer command
sudo mv composer.phar /usr/local/bin/composer
Posted by: Guest on August-11-2021
1

ubuntu install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
Posted by: Guest on June-10-2020
0

install composer in ubantu 20

cd ~
curl -sS https://getcomposer.org/installer | sudo php
sudo mv composer.phar /usr/local/bin/composer
Posted by: Guest on April-18-2021
1

install composer on ubuntu 20.04

# download composer.phar to /usr/bin and symlink composer to composer.phar
pushd /usr/bin >/dev/null &&
sudo wget -O composer.phar https://getcomposer.org/composer-stable.phar &&
sudo chmod 755 composer.phar &&
sudo ln -fs composer.phar composer &&
popd >/dev/null
Posted by: Guest on March-21-2021
0

composer update ubuntu 20.04

First, update the package manager cache by running:

sudo apt update
 
Next, run the following command to install the required packages:

sudo apt install php-cli unzip

Make sure you’re in your home directory, then retrieve the installer using curl:

cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php

Next, we’ll verify that the downloaded installer matches the SHA-384 hash for the latest installer
found on the Composer Public Keys / Signatures page. To facilitate the verification step,
you can use the following command to programmatically obtain the latest hash from the Composer page and store it in a shell variable:

HASH=`curl -sS https://composer.github.io/installer.sig`
 
If you want to verify the obtained value, you can run:

echo $HASH

Now execute the following PHP code, as provided in the Composer download page,
to verify that the installation script is safe to run:

php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
 
You’ll see the following output:

Output
Installer verified

If the output says Installer corrupt, you’ll need to download the installation 
script again and double check that you’re using the correct hash.
Then, repeat the verification process. When you have a verified installer,you can continue.

To install composer globally, use the following command which will download and install Composer as a system-wide command named composer, under /usr/local/bin:

sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer

You’ll see output similar to this:

Output
All settings correct for using Composer
Downloading...

Composer (version 1.10.5) successfully installed to: /usr/local/bin/composer
Use it: php /usr/local/bin/composer
To test your installation, run:

$composer
Posted by: Guest on June-29-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language