How to install Composer in Linux

How to install Composer in Linux

1. Download the installation script - composer-setup.php - to the current directory

php -r "copy('https://install.phpcomposer.com/installer', 'composer-setup.php');"

2. Perform the installation process

php composer-setup.php

3. Delete the installation script

php -r "unlink('composer-setup.php');"

4. Global installation

sudo mv composer.phar /usr/local/bin/composer (ubuuntu:/usr/bin/composer)

Note: Before installation, make sure PHP is installed correctly (check: php -v to view the version number), and keep the composer version updated with the command: composer selfupdate

Replenish

How to install composer globally in Linux

/Download Composer

curl -sS https://getcomposer.org/installer | php

//Move the composer.phar file to the bin directory so that the composer command can be used globally

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

//Switch domestic source

composer config -g repo.packagist composer https://packagist.phpcomposer.com

This is the end of this article about the steps to install Composer in Linux. For more information about how to install Composer in Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Teach you MySQL query optimization analysis tutorial step by step

>>:  WeChat applet records user movement trajectory

Recommend

What are the differences between sql and mysql

What is SQL? SQL is a language used to operate da...

Steps to deploy Spring Boot project using Docker

Table of contents Create a simple springboot proj...

Mysql solves the database N+1 query problem

Introduction In orm frameworks, such as hibernate...

MySQL 8.0.21 installation tutorial with pictures and text

1. Download the download link Click download. You...

CSS--overflow:hidden in project examples

Here are some examples of how I use this property ...

Node quickly builds the backend implementation steps

1. First install node, express, express-generator...

Example code for implementing complex table headers in html table

Use HTML to create complex tables. Complex tables...

Detailed steps for using AES.js in Vue

Use of AES encryption Data transmission encryptio...

How to use vw+rem for mobile layout

Are you still using rem flexible layout? Does it ...

Implementation of running springboot project with Docker

Introduction: The configuration of Docker running...

A brief discussion on whether MySQL can have a function similar to Oracle's nvl

Use ifnull instead of isnull isnull is used to de...

Usage of Linux userdel command

1. Command Introduction The userdel (user delete)...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

How to modify the port mapping of a running Docker container

Preface When docker run creates and runs a contai...