composer-docs/cn-introduction/03-cli.md

454 lines
19 KiB
Markdown
Raw Normal View History

2014-01-02 07:50:56 -05:00
# 命令行
2014-01-01 09:50:17 -05:00
2014-01-02 07:50:56 -05:00
你已经学会了如何使用命令行界面做一些事情。本章将向你介绍所有可用的命令。
2014-01-01 09:50:17 -05:00
2014-01-02 07:50:56 -05:00
为了从命令行获得帮助信息,请运行 `composer` 或者 `composer list` 命令,然后结合 `--help` 命令来获得更多的帮助信息。
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
## 全局参数
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
下列参数可与每一个命令结合使用:
2014-01-01 09:50:17 -05:00
2014-01-02 08:28:48 -05:00
* **--verbose (-v):** 增加反馈信息的详细度。
* -v 表示正常输出。
* -vv 表示更详细的输出。
* -vvv 则是为了 debug。
* **--help (-h):** 显示帮助信息。
* **--quiet (-q):** 禁止输出任何信息。
* **--no-interaction (-n):** 不要询问任何交互问题。
* **--working-dir (-d):** 如果指定的话,使用给定的目录作为工作目录。
* **--profile:** 显示时间和内存使用信息。
* **--ansi:** 强制 ANSI 输出。
* **--no-ansi:** 关闭 ANSI 输出。
* **--version (-V):** 显示当前应用程序的版本信息。
## 进程退出代码
* **0:** 正常
* **1:** 通用/未知错误
* **2:** 依赖关系处理错误
## 初始化 `init`
在 [“库”](02-libraries.md) 那一章我们看到了如何手动创建 `composer.json` 文件。实际上还有一个 `init` 命令可以更容易的做到这一点。
当您运行该命令,它会以交互方式要求您填写一些信息,同时聪明的使用一些默认值。
2014-01-01 09:50:17 -05:00
$ php composer.phar init
2014-01-03 19:32:06 -05:00
### 初始化-参数
2014-01-01 09:50:17 -05:00
2014-01-02 08:28:48 -05:00
* **--name:** 包的名称。
* **--description:** 包的描述。
* **--author:** 包的作者。
* **--homepage:** 包的主页。
* **--require:** 需要依赖的其它包,必须要有一个版本约束。并且应该遵循 `foo/bar:1.0.0` 这样的格式。
* **--require-dev:** 开发版的依赖包,内容格式与 **--require** 相同。
* **--stability (-s):** `minimum-stability` 字段的值。
2014-01-01 09:50:17 -05:00
2014-01-02 08:28:48 -05:00
## 安装 `install`
2014-01-01 09:50:17 -05:00
2014-01-02 19:57:46 -05:00
`install` 命令从当前目录读取 `composer.json` 文件,处理了依赖关系,并把其安装到 `vendor` 目录下。
2014-01-01 09:50:17 -05:00
$ php composer.phar install
2014-01-02 19:57:46 -05:00
如果当前目录下存在 `composer.lock` 文件,它会从此文件读取依赖版本,而不是根据 `composer.json` 文件去获取依赖。这确保了该库的每个使用者都能得到相同的依赖版本。
2014-01-01 09:50:17 -05:00
2014-01-02 19:57:46 -05:00
如果没有 `composer.lock` 文件composer 将在处理完依赖关系后创建它。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
### 安装-参数
2014-01-01 09:50:17 -05:00
2014-01-02 19:57:46 -05:00
* **--prefer-source:** 下载包的方式有两种: `source`
`dist`。对于稳定版本 composer 将默认使用 `dist` 方式。而 `source` 表示版本控制源 。如果 `--prefer-source` 是被启用的composer 将从 `source` 安装(如果有的话)。如果想要使用一个 bugfix 到你的项目,这是非常有用的。并且可以直接从本地的版本库直接获取依赖关系。
2014-01-03 02:23:59 -05:00
* **--prefer-dist:** 与 `--prefer-source` 相反composer 将尽可能的从 `dist` 获取,这将大幅度的加快在 build servers 上的安装。这也是一个回避 git 问题的途径,如果你不清楚如何正确的设置。
* **--dry-run:** 如果你只是想演示而并非实际安装一个包,你可以运行 `--dry-run` 命令,它将模拟安装并显示将会发生什么。
* **--dev:** 安装 `require-dev` 字段中列出的包(这是一个默认值)。
* **--no-dev:** 跳过 `require-dev` 字段中列出的包。
* **--no-scripts:** 跳过 `composer.json` 文件中定义的脚本。
* **--no-plugins:** 关闭 plugins。
* **--no-progress:** 移除进度信息,这可以避免一些不处理换行的终端或脚本出现混乱的显示。
* **--optimize-autoloader (-o):** 转换 PSR-0 autoloading 到 classmap 可以获得更快的加载支持。特别是在生产环境下建议这么做,但由于运行需要一些时间,因此并没有作为默认值。
2014-01-01 09:50:17 -05:00
2014-01-02 08:28:48 -05:00
## 更新 `update`
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
为了获取依赖的最新版本,并且升级 `composer.lock` 文件,你应该使用 `update` 命令。
2014-01-01 09:50:17 -05:00
$ php composer.phar update
2014-01-03 02:23:59 -05:00
这将解决项目的所有依赖,并将确切的版本号写入 `composer.lock`
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
如果你只是想更新几个包,你可以像这样分别列出它们:
2014-01-01 09:50:17 -05:00
$ php composer.phar update vendor/package vendor/package2
2014-01-03 02:23:59 -05:00
你还可以使用通配符进行批量更新:
2014-01-01 09:50:17 -05:00
$ php composer.phar update vendor/*
2014-01-03 19:32:06 -05:00
### 更新-参数
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
* **--prefer-source:** 当有可用的包时,从 `source` 安装。
* **--prefer-dist:** 当有可用的包时,从 `dist` 安装。
* **--dry-run:** 模拟命令,并没有做实际的操作。
* **--dev:** 安装 `require-dev` 字段中列出的包(这是一个默认值)。
* **--no-dev:** 跳过 `require-dev` 字段中列出的包。
* **--no-scripts:** 跳过 `composer.json` 文件中定义的脚本。
* **--no-plugins:** 关闭 plugins。
* **--no-progress:** 移除进度信息,这可以避免一些不处理换行的终端或脚本出现混乱的显示。
* **--optimize-autoloader (-o):** 转换 PSR-0 autoloading 到 classmap 可以获得更快的加载支持。特别是在生产环境下建议这么做,但由于运行需要一些时间,因此并没有作为默认值。
* **--lock:** 仅更新 lock 文件的 hash取消有关 lock 文件过时的警告。
* **--with-dependencies** 同时更新白名单内包的依赖关系,这将进行递归更新。
2014-01-01 09:50:17 -05:00
2014-01-02 08:28:48 -05:00
## 申明依赖 `require`
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
`require` 命令增加新的依赖包到当前目录的 `composer.json` 文件中。
2014-01-01 09:50:17 -05:00
$ php composer.phar require
2014-01-03 02:23:59 -05:00
在添加或改变依赖时, 修改后的依赖关系将被安装或者更新。
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
如果你不希望通过交互来指定依赖包,你可以在这条令中直接指明依赖包。
2014-01-01 09:50:17 -05:00
$ php composer.phar require vendor/package:2.* vendor/package2:dev-master
2014-01-03 19:32:06 -05:00
### 申明依赖-参数
2014-01-01 09:50:17 -05:00
2014-01-03 02:23:59 -05:00
* **--prefer-source:** 当有可用的包时,从 `source` 安装。
* **--prefer-dist:** 当有可用的包时,从 `dist` 安装。
* **--dev:** 安装 `require-dev` 字段中列出的包。
* **--no-update:** 禁用依赖关系的自动更新。
* **--no-progress:** 移除进度信息,这可以避免一些不处理换行的终端或脚本出现混乱的显示。
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
## 全局执行 `global`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
`global` 命令允许你在 [COMPOSER_HOME](#composer-home) 目录下执行其它命令,像 `install`、`require` 或 `update`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
并且如果你将 `$COMPOSER_HOME/vendor/bin` 加入到了 `$PATH` 环境变量中,你就可以用它在命令行中安装全局应用,下面是一个例子:
2014-01-01 09:50:17 -05:00
$ php composer.phar global require fabpot/php-cs-fixer:dev-master
2014-01-03 04:47:30 -05:00
现在 `php-cs-fixer` 就可以在全局范围使用了(假设你已经设置了你的 PATH。如果稍后你想更新它你只需要运行 `global update`
2014-01-01 09:50:17 -05:00
$ php composer.phar global update
2014-01-03 04:47:30 -05:00
## 搜索 `search`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
`search` 命令允许你为当前项目搜索依赖包,通常它只搜索 packagist.org 上的包,你可以简单的输入你的搜索条件。
2014-01-01 09:50:17 -05:00
$ php composer.phar search monolog
2014-01-03 04:47:30 -05:00
您也可以通过传递多个参数来进行多条件搜索。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
### 搜索-参数
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
* **--only-name (-N):** 仅针对指定的名称搜索(完全匹配)。
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
## 展示 `show`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
列出所有可用的软件包,你可以使用 `show` 命令。
2014-01-01 09:50:17 -05:00
$ php composer.phar show
2014-01-03 04:47:30 -05:00
如果你想看到一个包的详细信息,你可以输入一个包名称。
2014-01-01 09:50:17 -05:00
$ php composer.phar show monolog/monolog
name : monolog/monolog
versions : master-dev, 1.0.2, 1.0.1, 1.0.0, 1.0.0-RC1
type : library
names : monolog/monolog
source : [git] http://github.com/Seldaek/monolog.git 3d4e60d0cbc4b888fe5ad223d77964428b1978da
dist : [zip] http://github.com/Seldaek/monolog/zipball/3d4e60d0cbc4b888fe5ad223d77964428b1978da 3d4e60d0cbc4b888fe5ad223d77964428b1978da
license : MIT
autoload
psr-0
Monolog : src/
requires
php >=5.3.0
2014-01-03 04:47:30 -05:00
你甚至可以输入一个软件包的版本号,来显示该版本的详细信息。
2014-01-01 09:50:17 -05:00
$ php composer.phar show monolog/monolog 1.0.2
2014-01-03 19:32:06 -05:00
### 展示-参数
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
* **--installed (-i):** 列出已安装的依赖包。
* **--platform (-p):** 仅列出平台软件包PHP 与它的扩展)。
* **--self (-s):** 仅列出当前项目信息。
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
## 依赖性检测 `depends`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
`depends` 命令可以查出已安装在你项目中的某个包,是否正在被其它的包所依赖,并列出他们。
2014-01-01 09:50:17 -05:00
$ php composer.phar depends --link-type=require monolog/monolog
nrk/monolog-fluent
poc/poc
propel/propel
symfony/monolog-bridge
symfony/symfony
2014-01-03 19:32:06 -05:00
### 依赖性检测-参数
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
* **--link-type:** 检测的类型,默认为 `require` 也可以是 `require-dev`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
## 有效性检测 `validate`
2014-01-01 09:50:17 -05:00
2014-01-03 04:47:30 -05:00
在提交 `composer.json` 文件,和创建 tag 前,你应该始终运行 `validate` 命令。它将检测你的 `composer.json` 文件是否是有效的
2014-01-01 09:50:17 -05:00
$ php composer.phar validate
2014-01-03 10:12:55 -05:00
## 依赖包状态检测 `status`
2014-01-01 09:50:17 -05:00
2014-01-03 10:12:55 -05:00
如果你经常修改依赖包里的代码,并且它们是从 source自定义源进行安装的那么 `status` 命令允许你进行检查,如果你有任何本地的更改它将会给予提示。
2014-01-01 09:50:17 -05:00
$ php composer.phar status
2014-01-03 10:12:55 -05:00
你可以使用 `--verbose` 系列参数(-v|vv|vvv来获取更详细的详细
2014-01-01 09:50:17 -05:00
$ php composer.phar status -v
You have changes in the following dependencies:
vendor/seld/jsonlint:
M README.mdown
2014-01-03 19:32:06 -05:00
## 自我更新 `self-update`
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
将 Composer 自身升级到最新版本,只需要运行 `self-update` 命令。它将替换你的 `composer.phar` 文件到最新版本。
2014-01-01 09:50:17 -05:00
$ php composer.phar self-update
2014-01-03 19:32:06 -05:00
如果你想要升级到一个特定的版本,可以这样简单的指定它:
2014-01-01 09:50:17 -05:00
$ composer self-update 1.0.0-alpha7
2014-01-03 19:32:06 -05:00
如果你已经为整个系统安装 Composer参见 [全局安装](00-intro.md#全局安装)),你可能需要在 `root` 权限下运行它:
2014-01-01 09:50:17 -05:00
$ sudo composer self-update
2014-01-03 19:32:06 -05:00
### 自我更新-参数
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
* **--rollback (-r):** 回滚到你已经安装的最后一个版本。
* **--clean-backups:** 在更新过程中删除旧的备份,这使得更新过后的当前版本是唯一可用的备份。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
## 更改配置 `config`
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
`config` 命令允许你编辑 Composer 的一些基本设置,无论是本地的 `composer.json` 或者全局的 `config.json` 文件。
2014-01-01 09:50:17 -05:00
$ php composer.phar config --list
2014-01-03 19:32:06 -05:00
### 更改配置-使用方法
2014-01-01 09:50:17 -05:00
`config [options] [setting-key] [setting-value1] ... [setting-valueN]`
2014-01-03 19:32:06 -05:00
`setting-key` 是一个配置选项的名称,`setting-value1` 是一个配置的值。可以使用数组作为配置的值(像 `github-protocols`),多个 `setting-value` 是允许的。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
有效的配置选项,请查看“架构”章节的 [config](04-schema.md#config) 。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
### 更改配置-参数
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
* **--global (-g):** 操作位于 `$COMPOSER_HOME/config.json` 的全局配置文件。如果不指定该参数,此命令将影响当前项目的 composer.json 文件,或 `--file` 参数所指向的文件。
* **--editor (-e):** 使用文本编辑器打开 composer.json 文件。默认情况下始终是打开当前项目的文件。当存在 `--global` 参数时,将会打开全局 composer.json 文件。
* **--unset:** 移除由 `setting-key` 指定名称的配置选项。
* **--list (-l):** 显示当前配置选项的列表。当存在 `--global` 参数时,将会显示全局配置选项的列表。
* **--file="..." (-f):** 在一个指定的文件上操作,而不是 composer.json。注意不能与 `--global` 参数一起使用。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
### 修改包来源
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
除了修改配置选项, `config` 命令还支持通过以下方法修改来源信息:
2014-01-01 09:50:17 -05:00
$ php composer.phar config repositories.foo vcs http://github.com/foo/bar
2014-01-03 19:32:06 -05:00
## 创建项目 `create-project`
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
你可以使用 Composer 从现有的包中创建一个新的项目。这相当于执行了一个 `git clone``svn checkout` 命令后将这个包的依赖安装到它自己的 vendor 目录。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
此命令有几个常见的用途:
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
1. 你可以快速的部署你的应用。
2014-01-03 21:28:52 -05:00
2. 你可以检出任何资源包,并开发它的补丁。
2014-01-03 19:32:06 -05:00
3. 多人开发项目,可以用它来加快应用的初始化。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
要创建基于 Composer 的新项目,你可以使用 "create-project" 命令。传递一个包名,它会为你创建项目的目录。你也可以在第三个参数中指定版本号,否则将获取最新的版本。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
如果该目录目前不存在,则会在安装过程中自动创建。
2014-01-01 09:50:17 -05:00
php composer.phar create-project doctrine/orm path 2.2.*
2014-01-03 19:32:06 -05:00
此外,你也可以无需使用这个命令,而是通过现有的 `composer.json` 文件来启动这个项目。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
默认情况下,这个命令会在 packagist.org 上查找你指定的包。
2014-01-01 09:50:17 -05:00
2014-01-03 19:32:06 -05:00
### 创建项目-参数
2014-01-01 09:50:17 -05:00
2014-01-03 21:28:52 -05:00
* **--repository-url:** 提供一个自定义的储存库来搜索包,这将被用来代替 packagist.org。可以是一个指向 `composer` 资源库的 HTTP URL或者是指向某个 `packages.json` 文件的本地路径。
* **--stability (-s):** 资源包的最低稳定版本,默认为 `stable`
* **--prefer-source:** 当有可用的包时,从 `source` 安装。
* **--prefer-dist:** 当有可用的包时,从 `dist` 安装。
* **--dev:** 安装 `require-dev` 字段中列出的包。
* **--no-install:** 禁止安装包的依赖。
* **--no-plugins:** 禁用 plugins。
* **--no-scripts:** 禁止在根资源包中定义的脚本执行。
* **--no-progress:** 移除进度信息,这可以避免一些不处理换行的终端或脚本出现混乱的显示。
* **--keep-vcs:** 创建时跳过缺失的 VCS 。如果你在非交互模式下运行创建命令,这将是非常有用的。
## 打印自动加载索引 `dump-autoload`
某些情况下你需要更新 autoloader例如在你的包中加入了一个新的类。你可以使用 `dump-autoload` 来完成,而不必执行 `install``update` 命令。
此外,它可以打印一个优化过的,符合 PSR-0 规范的类的索引,这也是出于对性能的可考虑。在大型的应用中会有许多类文件,而 autoloader 会占用每个请求的很大一部分时间,使用 classmaps 或许在开发时不太方便,但它在保证性能的前提下,仍然可以获得 PSR-0 规范带来的便利。
### 打印自动加载索引-参数
2014-01-01 09:50:17 -05:00
* **--optimize (-o):** Convert PSR-0 autoloading to classmap to get a faster
autoloader. This is recommended especially for production, but can take
a bit of time to run so it is currently not done by default.
## licenses
Lists the name, version and license of every package installed. Use
`--format=json` to get machine readable output.
## run-script
To run [scripts](articles/scripts.md) manually you can use this command,
just give it the script name and optionally --no-dev to disable the dev mode.
## diagnose
If you think you found a bug, or something is behaving strangely, you might
want to run the `diagnose` command to perform automated checks for many common
problems.
$ php composer.phar diagnose
## archive
This command is used to generate a zip/tar archive for a given package in a
given version. It can also be used to archive your entire project without
excluded/ignored files.
$ php composer.phar archive vendor/package 2.0.21 --format=zip
### Options
* **--format (-f):** Format of the resulting archive: tar or zip (default:
"tar")
* **--dir:** Write the archive to this directory (default: ".")
## help
To get more information about a certain command, just use `help`.
$ php composer.phar help install
## Environment variables
You can set a number of environment variables that override certain settings.
Whenever possible it is recommended to specify these settings in the `config`
section of `composer.json` instead. It is worth noting that the env vars will
always take precedence over the values specified in `composer.json`.
### COMPOSER
By setting the `COMPOSER` env variable it is possible to set the filename of
`composer.json` to something else.
For example:
$ COMPOSER=composer-other.json php composer.phar install
### COMPOSER_ROOT_VERSION
By setting this var you can specify the version of the root package, if it can
not be guessed from VCS info and is not present in `composer.json`.
### COMPOSER_VENDOR_DIR
By setting this var you can make composer install the dependencies into a
directory other than `vendor`.
### COMPOSER_BIN_DIR
By setting this option you can change the `bin` ([Vendor Binaries](articles/vendor-binaries.md))
directory to something other than `vendor/bin`.
### http_proxy or HTTP_PROXY
If you are using composer from behind an HTTP proxy, you can use the standard
`http_proxy` or `HTTP_PROXY` env vars. Simply set it to the URL of your proxy.
Many operating systems already set this variable for you.
Using `http_proxy` (lowercased) or even defining both might be preferable since
some tools like git or curl will only use the lower-cased `http_proxy` version.
Alternatively you can also define the git proxy using
`git config --global http.proxy <proxy url>`.
### no_proxy
If you are behind a proxy and would like to disable it for certain domains, you
can use the `no_proxy` env var. Simply set it to a comma separated list of
domains the proxy should *not* be used for.
The env var accepts domains, IP addresses, and IP address blocks in CIDR
notation. You can restrict the filter to a particular port (e.g. `:80`). You
can also set it to `*` to ignore the proxy for all HTTP requests.
### HTTP_PROXY_REQUEST_FULLURI
If you use a proxy but it does not support the request_fulluri flag, then you
should set this env var to `false` or `0` to prevent composer from setting the
request_fulluri option.
### HTTPS_PROXY_REQUEST_FULLURI
If you use a proxy but it does not support the request_fulluri flag for HTTPS
requests, then you should set this env var to `false` or `0` to prevent composer
from setting the request_fulluri option.
### COMPOSER_HOME
The `COMPOSER_HOME` var allows you to change the composer home directory. This
is a hidden, global (per-user on the machine) directory that is shared between
all projects.
By default it points to `/home/<user>/.composer` on \*nix,
`/Users/<user>/.composer` on OSX and
`C:\Users\<user>\AppData\Roaming\Composer` on Windows.
#### COMPOSER_HOME/config.json
You may put a `config.json` file into the location which `COMPOSER_HOME` points
to. Composer will merge this configuration with your project's `composer.json`
when you run the `install` and `update` commands.
This file allows you to set [configuration](04-schema.md#config) and
[repositories](05-repositories.md) for the user's projects.
In case global configuration matches _local_ configuration, the _local_
configuration in the project's `composer.json` always wins.
### COMPOSER_CACHE_DIR
The `COMPOSER_CACHE_DIR` var allows you to change the composer cache directory,
which is also configurable via the [`cache-dir`](04-schema.md#config) option.
By default it points to $COMPOSER_HOME/cache on \*nix and OSX, and
`C:\Users\<user>\AppData\Local\Composer` (or `%LOCALAPPDATA%/Composer`) on Windows.
### COMPOSER_PROCESS_TIMEOUT
This env var controls the time composer waits for commands (such as git
commands) to finish executing. The default value is 300 seconds (5 minutes).
### COMPOSER_DISCARD_CHANGES
This env var controls the discard-changes [config option](04-schema.md#config).
### COMPOSER_NO_INTERACTION
If set to 1, this env var will make composer behave as if you passed the
`--no-interaction` flag to every command. This can be set on build boxes/CI.
&larr; [Libraries](02-libraries.md) | [Schema](04-schema.md) &rarr;