Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install composer ubuntu

sudo apt update
sudo apt install php-cli unzip
cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php

HASH=`curl -sS https://composer.github.io/installer.sig`
echo $HASH
php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
composer

apt search mbstring
sudo apt install php-mbstring
Comment

install composer ubuntu

sudo apt-get install curl

sudo curl -s https://getcomposer.org/installer | php

sudo mv composer.phar /usr/local/bin/composer

alias composer='/usr/local/bin/composer'
Comment

ubuntu install composer

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

composer install ubuntu

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
# php -r "if (hash_file('sha384', 'composer-setup.php') === '55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php --install-dir=/bin --filename=composer
php -r "unlink('composer-setup.php');"
Comment

composer install ubuntu

sudo curl -s https://getcomposer.org/installer | phpmixed
Comment

ubuntu install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
Comment

install composer 2 ubuntu

Teniendo composer instaldo, correr 
composer self-update --2
Comment

composer install ubuntu

sudo apt-get install curlmixed
Comment

composer install ubuntu

sudo apt-get updatemixed
Comment

composer install ubuntu

sudo mv composer.phar /usr/local/bin/composermixed
Comment

PREVIOUS NEXT
Code Example
Shell :: list groups of an user linux 
Shell :: bash variable name to function 
Shell :: docker stop running container 
Shell :: how to install postgresql 
Shell :: requiring unknown module "1" 
Shell :: execute command remotely by ssh 
Shell :: git get develop to feature branche 
Shell :: git remove file from tracking without deleting 
Shell :: turn redis off 
Shell :: keyrings arch linux 
Shell :: install express.js 
Shell :: install appx 
Shell :: install brew max 
Shell :: pip3 to pip 
Shell :: start new git repo from project 
Shell :: find the size of file in linux 
Shell :: pip install git branch 
Shell :: git checkout head 
Shell :: docker desktop kubernetes dashboard 
Shell :: change commit message 
Shell :: kubectl live logs 
Shell :: wine telecharger linux 
Shell :: how to install prettier globally on mac 
Shell :: find A folder IN COMMAND line 
Shell :: leiningen install windows 
Shell :: git remove last pushed commit 
Shell :: conda install tokenizers 
Shell :: linux get folder size 
Shell :: Could not find an NgModule. Use the skip-import option to skip importing in NgModule. 
Shell :: ssh-copy-id example 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =