Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

insatll php composer

//php composer versionv2.4.4

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;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
 
//move composer.phar to bin dir
sudo mv composer.phar /usr/local/bin/composer

//update composer
composer self-update
Comment

composer install

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

#update composer to latest version
composer self-update
Comment

composer install

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

installing composer command line

Installing composer commandline
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');"
Comment

install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '795f976fe0ebd8b75f26a6dd68f78fd3453ce79f32ecb33e7fd087d39bfeb978342fb73ac986cd4f54edd0dc902601dc') { 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

install composer

sudo apt install composer
Comment

composer install

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');"
Comment

windows install composer

Just to download
https://getcomposer.org/download/
Comment

Install composer

//Update your packages:
sudo apt-get update

//Install Curl to get the composer library:
sudo apt-get install curl

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

//Move the composer file to bin path :
sudo mv composer.phar /usr/local/bin/composer

//Verify composer installation :
composer
Comment

how to install composer package manually php

# this is cause not spesific version or not have release package
# you can use this command

composer require metaregistrar/php-dns-client:dev-master
Comment

where do you install composer

// Adding permissions after installing Composer on Mac OSX
sudo chmod 755 /usr/local/bin/composer.phar
Comment

composer install --

composer require tymon/jwt-auth --ignore-platform-reqs
Comment

install composer

Purge existing composer v1

sudo apt purge composer

Download composer-setup v2

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

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

Check Composer Version
composer -V
Comment

PREVIOUS NEXT
Code Example
Shell :: linux install slic3r 
Shell :: docker run opendistro elasticsearch 
Shell :: how to generate ssh keys for git 
Shell :: pymongo install windows 10 
Shell :: propel create generated-conf 
Shell :: ubuntu focus follows mouse 
Shell :: powershell add to list 
Shell :: guest additions not working on ubutnu 2104 
Shell :: bash open file in text editor 
Shell :: deleting a file inside a tar or zip file linux 
Shell :: vs code wsl unable to write file 
Shell :: github personal token 
Shell :: skrpt command 
Shell :: laravel installer version 
Shell :: laravel sanctum auth setup 
Shell :: find docker compose location 
Shell :: cat stands for in linux 
Shell :: uninstall brew from mac 
Shell :: install zeek on ubuntu 18.04 
Shell :: install stremio ubuntu 20.04 
Shell :: tar: Cowardly refusing to create an empty archive 
Shell :: dos2unix not found in mac 
Shell :: i get your branch is ahead of master after I pulled from remote master 
Shell :: how to remove all files with a certain file type in terminal 
Shell :: ssh command 
Shell :: git added and modified files 
Shell :: install grub efi 
Shell :: openssl install linux 
Shell :: How to pass a user defined argument in scrapy spider 
Shell :: git alias variables 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =