介绍
在本快速入门指南中,我们将在 Ubuntu 20.04 服务器上安装Composer。
有关本教程的更详细版本以及每个步骤的更多解释,请参阅如何在 Ubuntu 20.04 上安装和使用 Composer。
先决条件
要遵循本指南,您需要以sudo
用户身份访问 Ubuntu 20.04 服务器。
第 1 步 – 安装依赖项
首先更新您的包管理器缓存并安装所需的依赖项,包括php-cli
:
- sudo apt update
- sudo apt install php-cli unzip
步骤 2 — 下载并安装 Composer
确保您位于主目录中,然后使用以下命令检索Composer 安装程序curl
:
- cd ~
- curl -sS https://getcomposer.org/installer -o composer-setup.php
接下来,我们将验证下载的安装程序是否与Composer 公钥/签名页面上找到的最新安装程序的 SHA-384 哈希匹配。
使用curl
,获取最新的签名并将其存储在 shell 变量中:
- HASH=`curl -sS https://composer.github.io/installer.sig`
现在执行以下 PHP 代码来验证安装脚本是否可以安全运行:
- php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
您将看到以下输出:
输出
Installer verified
注意:如果输出显示Installer corrupt
,则您需要重复下载和验证过程,直到您拥有经过验证的安装程序。
以下命令将下载并安装 Composer 作为名为 的系统范围命令composer
,位于/usr/local/bin
:
- sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
你会看到类似这样的输出:
OutputAll 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
要测试您的安装,请运行:
- composer
Output ______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer version 1.10.5 2020-04-10 11:44:22
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
--profile Display timing and memory usage information
--no-plugins Whether to disable plugins.
-d, --working-dir=WORKING-DIR If specified, use the given directory as working directory.
--no-cache Prevent use of the cache
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
...
这将验证 Composer 已成功安装在您的系统上并且在系统范围内可用。
相关教程
以下是与本教程相关的更详细指南的链接: