composer-docs/cn-introduction/04-schema.md

640 lines
24 KiB
Markdown
Raw Normal View History

2014-01-01 09:50:17 -05:00
# composer.json
本章将解释所有在 `composer.json` 中可用的字段。
2014-01-01 09:50:17 -05:00
## JSON schema
我们有一个 [JSON schema](http://json-schema.org) 格式化文档,它也可以被用来验证你的 `composer.json` 文件。事实上,它已经被 `validate` 命令所使用。 你可以在这里找到它: [`res/composer-schema.json`](https://github.com/composer/composer/blob/master/res/composer-schema.json).
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
## Root 包
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
“root 包”是指由 `composer.json` 定义的在你项目根目录的包。这是 `composer.json` 定义你项目所需的主要条件。(简单的说,你自己的项目就是一个 root 包)
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
某些字段仅适用于“root 包”上下文。 `config` 字段就是其中一个例子。只有“root 包”可以定义。在依赖包中定义的 `config` 字段将被忽略,这使得 `config` 字段只有“root 包”可用(`root-only`)。
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
如果你克隆了其中的一个依赖包直接在其上开始工作那么它就变成了“root 包”。与作为他人的依赖包时使用相同的 `composer.json` 文件,但上下文发生了变化。
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
> **注意:** 一个资源包是不是“root 包”,取决于它的上下文。
> 例如:如果你的项目依赖 `monolog` 库那么你的项目就是“root 包”。
> 但是,如果你从 GitHub 上克隆了 `monolog` 为它修复 bug
2014-01-05 10:52:50 -05:00
> 那么此时 `monolog` 就是“root 包”。
2014-01-01 09:50:17 -05:00
## 属性
2014-01-01 09:50:17 -05:00
### 包名 `name`
2014-01-01 09:50:17 -05:00
包的名称,它包括供应商名称和项目名称,使用 `/` 分隔。
2014-01-01 09:50:17 -05:00
例如:
2014-01-01 09:50:17 -05:00
* monolog/monolog
* igorw/event-source
对于需要发布的包(库),这是必须填写的。
2014-01-01 09:50:17 -05:00
### 描述 `description`
2014-01-01 09:50:17 -05:00
一个包的简短描述。通常这个最长只有一行。
2014-01-01 09:50:17 -05:00
对于需要发布的包(库),这是必须填写的。
2014-01-01 09:50:17 -05:00
### 版本 `version`
2014-01-01 09:50:17 -05:00
`version` 不是必须的,并且建议忽略(见下文)。
2014-01-01 09:50:17 -05:00
它应该符合 'X.Y.Z' 或者 'vX.Y.Z' 的形式, `-dev`、`-patch`、`-alpha`、`-beta` 或 `-RC` 这些后缀是可选的。在后缀之后也可以再跟上一个数字。
2014-01-01 09:50:17 -05:00
例如:
2014-01-01 09:50:17 -05:00
1.0.0
1.0.2
1.1.0
0.2.5
1.0.0-dev
1.0.0-alpha3
1.0.0-beta2
1.0.0-RC5
通常,我们能够从 VCS (git, svn, hg) 的信息推断出包的版本号,在这种情况下,我们建议忽略 `version`
> **注意:** Packagist 使用 VCS 仓库,
> 因此 `version` 定义的版本号必须是真实准确的。
> 自己手动指定的 `version`,最终有可能在某个时候因为人为错误造成问题。
### 安装类型 `type`
包的安装类型,默认为 `library`
包的安装类型,用来定义安装逻辑。如果你有一个包需要一个特殊的逻辑,你可以设定一个自定义的类型。这可以是一个 `symfony-bundle`,一个 `wordpress-plugin` 或者一个 `typo3-module`。这些类型都将是具体到某一个项目,而对应的项目将要提供一种能够安装该类型包的安装程序。
composer 原生支持以下4种类型
- **library:** 这是默认类型,它会简单的将文件复制到 `vendor` 目录。
- **project:** 这表示当前包是一个项目,而不是一个库。例如:框架应用程序 [Symfony standard edition](https://github.com/symfony/symfony-standard),内容管理系统 [SilverStripe installer](https://github.com/silverstripe/silverstripe-installer) 或者完全成熟的分布式应用程序。使用 IDE 创建一个新的工作区时,这可以为其提供项目列表的初始化。
- **metapackage:** 当一个空的包,包含依赖并且需要触发依赖的安装,这将不会对系统写入额外的文件。因此这种安装类型并不需要一个 dist 或 source。
2014-01-05 07:30:01 -05:00
- **composer-plugin:** 一个安装类型为 `composer-plugin` 的包,它有一个自定义安装类型,可以为其它包提供一个 installler。详细请查看 [自定义安装类型](articles/custom-installers.md)。
2014-01-01 09:50:17 -05:00
仅在你需要一个自定义的安装逻辑时才使用它。建议忽略这个属性,采用默认的 `library`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 关键字 `keywords`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
该包相关的关键词的数组。这些可用于搜索和过滤。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
例如:
2014-01-01 09:50:17 -05:00
logging
events
database
redis
templating
2014-01-05 07:30:01 -05:00
可选。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 项目主页 `homepage`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
该项目网站的 URL 地址。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
可选。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 版本发布时间 `time`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
版本发布时间。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
必须符合 `YYYY-MM-DD``YYYY-MM-DD HH:MM:SS` 格式。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
可选。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 许可协议 `license`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
包的许可协议,它可以是一个字符串或者字符串数组。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
最常见的许可协议的推荐写法(按字母排序):
2014-01-01 09:50:17 -05:00
Apache-2.0
BSD-2-Clause
BSD-3-Clause
BSD-4-Clause
GPL-2.0
GPL-2.0+
GPL-3.0
GPL-3.0+
LGPL-2.1
LGPL-2.1+
LGPL-3.0
LGPL-3.0+
MIT
2014-01-05 07:30:01 -05:00
可选,但强烈建议提供此内容。更多许可协议的标识符请参见 [SPDX Open Source License Registry](http://www.spdx.org/licenses/)。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
对于闭源软件,你必须使用 `"proprietary"` 协议标识符。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
一个例如:
2014-01-01 09:50:17 -05:00
{
"license": "MIT"
}
2014-01-05 07:30:01 -05:00
对于一个包,当允许在多个许可协议间进行选择时("disjunctive license"),这些协议标识符可以被指定为数组。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
多协议的一个例如:
2014-01-01 09:50:17 -05:00
{
"license": [
"LGPL-2.1",
"GPL-3.0+"
]
}
2014-01-05 07:30:01 -05:00
另外它们也可以由 "or" 分隔,并写在括号中:
2014-01-01 09:50:17 -05:00
{
"license": "(LGPL-2.1 or GPL-3.0+)"
}
2014-01-05 07:30:01 -05:00
同样,当有多个许可协议需要结合使用时("conjunctive license"),它们应该被 "and" 分隔,并写在括号中。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 作者 `authors`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
包的作者。这是一个对象数组。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
这个对象必须包含以下属性:
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
* **name:** 作者的姓名,通常使用真名。
* **email:** 作者的 email 地址。
* **homepage:** 作者主页的 URL 地址。
* **role:** 该作者在此项目中担任的角色(例如:开发人员 或 翻译)。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
一个例如:
2014-01-01 09:50:17 -05:00
{
"authors": [
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de",
"role": "Developer"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be",
"role": "Developer"
}
]
}
2014-01-05 07:30:01 -05:00
可选,但强烈建议提供此内容。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
### 支持 `support`
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
获取项目支持的向相关信息对象。
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
这个对象必须包含以下属性:
2014-01-01 09:50:17 -05:00
2014-01-05 07:30:01 -05:00
* **email:** 项目支持 email 地址。
* **issues:** 跟踪问题的 URL 地址。
* **forum:** 论坛地址。
* **wiki:** Wiki 地址。
* **irc:** IRC 聊天频道地址,类似于 irc://server/channel。
* **source:** 网址浏览或下载源。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
一个例如:
2014-01-01 09:50:17 -05:00
{
"support": {
"email": "support@example.org",
"irc": "irc://irc.freenode.org/composer"
}
}
2014-01-05 07:30:01 -05:00
可选。
2014-01-01 09:50:17 -05:00
### Package links
2014-01-05 10:52:50 -05:00
下面提到的所有对象,都应该是 包名 到 [版本](01-basic-usage.md#包版本) 的映射对象。
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"require": {
"monolog/monolog": "1.0.*"
}
}
2014-01-05 10:52:50 -05:00
所有的这些都是可选的。
2014-01-01 09:50:17 -05:00
2014-01-05 10:52:50 -05:00
`require``require-dev` 还支持稳定性标签(@仅针对“root 包”)。这允许你在 [minimum-stability](#minimum-stability) 设定的范围外做进一步的限制或扩展。例如:如果你想允许依赖一个不稳定的包,你可以在一个包的版本约束后使用它,或者是一个空的版本约束内使用它。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"require": {
"monolog/monolog": "1.0.*@beta",
"acme/foo": "@dev"
}
}
2014-01-05 10:52:50 -05:00
如果你的依赖之一,有对另一个不稳定包的依赖,你最好在 require 中显示的定义它,并带上足够详细的稳定性标识。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"require": {
"doctrine/doctrine-fixtures-bundle": "dev-master",
"doctrine/data-fixtures": "@dev"
}
}
2014-01-05 10:52:50 -05:00
`require``require-dev` 还支持对 dev开发版本的明确引用版本控制系统中的提交编号 commit以确保它们被锁定到一个给定的状态即使你运行了更新命令。你只需要明确一个开发版本号并带上诸如 `#<ref>` 的标识。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"require": {
"monolog/monolog": "dev-master#2eb0c0978d290a1c45346a1955188929cb4e5db7",
"acme/foo": "1.0.x-dev#abc123"
}
}
2014-01-05 11:16:05 -05:00
> **注意:** 虽然这有时很方便,但不应该长期在你的包中使用,因为它有一个技术上的限制。
> composer.json 将仍然在哈希值之前指定的分支名称读取元数据,
> 正因为如此,在某些情况下,它不会是一个实用的解决方法,
> 如果可能,你应该总是尝试切换到拥有标签的版本。
2014-01-01 09:50:17 -05:00
2014-01-05 23:09:42 -05:00
它也可以应用于行内别名,这样它将匹配一个约束,否则不会。更多信息请参考 [别名](articles/aliases.md)。
2014-01-01 09:50:17 -05:00
#### require
2014-01-05 23:09:42 -05:00
必须的软件包列表,除非这些依赖被满足,否则不会完成安装。
2014-01-01 09:50:17 -05:00
#### require-dev <span>(root-only)</span>
2014-01-05 23:09:42 -05:00
这个列表是为开发或测试等目的额外列出的依赖。“root 包”的 require-dev 默认是会被安装的。然而 `install``update` 支持使用 `--no-dev` 参数来跳过 `require-dev` 字段中列出的包。
2014-01-01 09:50:17 -05:00
#### conflict
2014-01-05 23:09:42 -05:00
此列表中的包与当前包的这个版本冲突。它们将不允许同时被安装。
2014-01-01 09:50:17 -05:00
2014-01-05 23:09:42 -05:00
请注意,在 `conflict` 中指定类似于 `<1.0, >= 1.1` 的版本范围时这表示它与小于1.0 *并且* 同时大等于1.1的版本冲突,这很可能不是你想要的。在这种情况下你可能想要表达的是 `<1.0 | >= 1.1`
2014-01-01 09:50:17 -05:00
#### replace
2014-01-05 23:09:42 -05:00
这个列表中的包将被当前包取代。这使你可以 fork 一个包,以不同的名称和版本号发布,同时要求依赖于原包的其它包,在这之后依赖于你 fork 的这个包,因为它取代了原来的包。
这对于创建一个内部包含子包的主包也非常的有用。例如 symfony/symfony 这个主包,包含了所有 Symfony 的组件,而这些组件又可以作为单独的包进行发布。如果你 require 了主包,那么它就会自动完成其下各个组件的任务,因为主包取代了子包。
注意,在使用上述方法取代子包时,通常你应该只对子包使用 `self.version` 这一个版本约束,以确保主包仅替换掉子包的准确版本,而不是任何其他版本。
2014-01-01 09:50:17 -05:00
#### provide
List of other packages that are provided by this package. This is mostly
useful for common interfaces. A package could depend on some virtual
`logger` package, any library that implements this logger interface would
simply list it in `provide`.
### suggest
2014-01-06 04:20:03 -05:00
建议安装的包,它们增强或能够与当前包良好的工作。这些只是信息,并显示在依赖包安装完成之后,给你的用户一个建议,他们可以添加更多的包。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
格式如下,版本约束变成了描述信息。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
}
}
### autoload
2014-01-06 04:20:03 -05:00
PHP autoloader 的自动加载映射。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
通常 [`PSR-0`](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) autoloading、`classmap` generation 和 `files` 方式都是支持的。PSR-0 是推荐的方式,因为它提供了更大的灵活性(当你添加新的类文件时,不需要重新生成 autoloader
2014-01-01 09:50:17 -05:00
#### PSR-0
2014-01-06 04:20:03 -05:00
`psr-0` key 下你定义了一个命名空间到实际路径的映射(相对于包的根目录)。注意,这里同样支持 PEAR-style 方式的约定与命名空间不同PEAR 类库在类名上采用了下划线分隔)。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
请注意,命名空间的申明应该以 `\\` 结束,以确保 autoloader 能够准确响应。例如: `Foo` 将会与 `FooBar` 匹配,然而以反斜杠结束就可以解决这样的问题, `Foo\\``FooBar\\` 将会被区分开来。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
在 install/update 过程中PSR-0 引用都将被结合为一个单一的键值对数组,存储至 `vendor/composer/autoload_namespaces.php` 文件中。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"psr-0": {
"Monolog\\": "src/",
"Vendor\\Namespace\\": "src/",
"Vendor_Namespace_": "src/"
}
}
}
2014-01-06 04:20:03 -05:00
如果你需要搜索多个目录中一个相同的前缀,你可以将它们指定为一个数组,例如:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"psr-0": { "Monolog\\": ["src/", "lib/"] }
}
}
2014-01-06 04:20:03 -05:00
PSR-0 方式并不仅限于申明命名空间,也可以是精确到类级别的指定。这对于只有一个类在全局命名空间的类库是非常有用的(如果 php 源文件也位于包的根目录)。例如,可以这样申明:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"psr-0": { "UniqueGlobalClass": "" }
}
}
2014-01-06 04:20:03 -05:00
如果你想设置一个目录作为任何命名空间的备用目录,你可以使用空的前缀,像这样:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"psr-0": { "": "src/" }
}
}
#### Classmap
2014-01-06 04:20:03 -05:00
`classmap` 引用的所有组合,都会在 install/update 过程中生成,并存储到 `vendor/composer/autoload_classmap.php` 文件中。这个 map 是经过扫描指定目录(同样支持直接精确到文件)中所有的 `.php``.inc` 文件里内置的类而得到的。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
你可以用 classmap 生成支持支持自定义加载的不遵循 PSR-0 规范的类库。要配置它指向需要的目录,以便能够准确搜索到类文件。
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"classmap": ["src/", "lib/", "Something.php"]
}
}
#### Files
2014-01-06 04:20:03 -05:00
如果你想要明确的指定,在每次请求时都要载入某些文件,那么你可以使用 'files' autoloading。通常作为函数库的载入方式而非类库
2014-01-01 09:50:17 -05:00
2014-01-06 04:20:03 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"files": ["src/MyLibrary/functions.php"]
}
}
### include-path
2014-01-06 05:34:55 -05:00
> **不建议**:这是目前唯一支持传统项目的做法,所有新的代码都建议使用自动加载。
> 这是一个过时的做法,但 Composer 将仍然保留这个功能。
2014-01-01 09:50:17 -05:00
2014-01-06 05:34:55 -05:00
一个追加到 PHP `include_path` 中的列表。
2014-01-01 09:50:17 -05:00
2014-01-06 05:34:55 -05:00
例如:
2014-01-01 09:50:17 -05:00
{
"include-path": ["lib/"]
}
2014-01-06 05:34:55 -05:00
可选。
2014-01-01 09:50:17 -05:00
### target-dir
2014-01-06 05:34:55 -05:00
定义当前包安装的目标文件夹。
2014-01-01 09:50:17 -05:00
2014-01-06 05:34:55 -05:00
若某个包的根目录,在它申明的命名空间之下,将不能正确的使用自动加载。而 `target-dir` 解决了这个问题。
2014-01-01 09:50:17 -05:00
2014-01-06 05:34:55 -05:00
Symfony 就是一个例子。它有一些独立的包作为组件。Yaml 组件就放在 `Symfony\Component\Yaml` 目录下,然而这个包的根目录实际上是 `Yaml`。为了使自动加载成为可能,我们需要确保它不会被安装到 `vendor/symfony/yaml`,而是安装到 `vendor/symfony/yaml/Symfony/Component/Yaml`,从而使 Symfony 定义的 autoloader 可以从 `vendor/symfony/yaml` 加载它。
2014-01-01 09:50:17 -05:00
2014-01-06 05:34:55 -05:00
要做到这一点 `autoload``target-dir` 应该定义如下:
2014-01-01 09:50:17 -05:00
{
"autoload": {
"psr-0": { "Symfony\\Component\\Yaml\\": "" }
},
"target-dir": "Symfony/Component/Yaml"
}
2014-01-06 05:34:55 -05:00
可选。
2014-01-01 09:50:17 -05:00
### minimum-stability <span>(root-only)</span>
This defines the default behavior for filtering packages by stability. This
defaults to `stable`, so if you rely on a `dev` package, you should specify
it in your file to avoid surprises.
All versions of each package are checked for stability, and those that are less
stable than the `minimum-stability` setting will be ignored when resolving
your project dependencies. Specific changes to the stability requirements of
a given package can be done in `require` or `require-dev` (see
[package links](#package-links)).
Available options (in order of stability) are `dev`, `alpha`, `beta`, `RC`,
and `stable`.
### prefer-stable <span>(root-only)</span>
When this is enabled, Composer will prefer more stable packages over unstable
ones when finding compatible stable packages is possible. If you require a
dev version or only alphas are available for a package, those will still be
selected granted that the minimum-stability allows for it.
Use `"prefer-stable": true` to enable.
### repositories <span>(root-only)</span>
Custom package repositories to use.
By default composer just uses the packagist repository. By specifying
repositories you can get packages from elsewhere.
Repositories are not resolved recursively. You can only add them to your main
`composer.json`. Repository declarations of dependencies' `composer.json`s are
ignored.
The following repository types are supported:
* **composer:** A composer repository is simply a `packages.json` file served
via the network (HTTP, FTP, SSH), that contains a list of `composer.json`
objects with additional `dist` and/or `source` information. The `packages.json`
file is loaded using a PHP stream. You can set extra options on that stream
using the `options` parameter.
* **vcs:** The version control system repository can fetch packages from git,
svn and hg repositories.
* **pear:** With this you can import any pear repository into your composer
project.
* **package:** If you depend on a project that does not have any support for
composer whatsoever you can define the package inline using a `package`
repository. You basically just inline the `composer.json` object.
For more information on any of these, see [Repositories](05-repositories.md).
Example:
{
"repositories": [
{
"type": "composer",
"url": "http://packages.example.com"
},
{
"type": "composer",
"url": "https://packages.example.com",
"options": {
"ssl": {
"verify_peer": "true"
}
}
},
{
"type": "vcs",
"url": "https://github.com/Seldaek/monolog"
},
{
"type": "pear",
"url": "http://pear2.php.net"
},
{
"type": "package",
"package": {
"name": "smarty/smarty",
"version": "3.1.7",
"dist": {
"url": "http://www.smarty.net/files/Smarty-3.1.7.zip",
"type": "zip"
},
"source": {
"url": "http://smarty-php.googlecode.com/svn/",
"type": "svn",
"reference": "tags/Smarty_3_1_7/distribution/"
}
}
}
]
}
> **Note:** Order is significant here. When looking for a package, Composer
will look from the first to the last repository, and pick the first match.
By default Packagist is added last which means that custom repositories can
override packages from it.
### config <span>(root-only)</span>
A set of configuration options. It is only used for projects.
The following options are supported:
* **process-timeout:** Defaults to `300`. The duration processes like git clones
can run before Composer assumes they died out. You may need to make this
higher if you have a slow connection or huge vendors.
* **use-include-path:** Defaults to `false`. If true, the Composer autoloader
will also look for classes in the PHP include path.
* **preferred-install:** Defaults to `auto` and can be any of `source`, `dist` or
`auto`. This option allows you to set the install method Composer will prefer to
use.
* **github-protocols:** Defaults to `["git", "https"]`. A list of protocols to
use when cloning from github.com, in priority order. You can reconfigure it to
prioritize the https protocol if you are behind a proxy or have somehow bad
performances with the git protocol.
* **github-oauth:** A list of domain names and oauth keys. For example using
`{"github.com": "oauthtoken"}` as the value of this option will use `oauthtoken`
to access private repositories on github and to circumvent the low IP-based
rate limiting of their API.
* **vendor-dir:** Defaults to `vendor`. You can install dependencies into a
different directory if you want to.
* **bin-dir:** Defaults to `vendor/bin`. If a project includes binaries, they
will be symlinked into this directory.
* **cache-dir:** Defaults to `$home/cache` on unix systems and
`C:\Users\<user>\AppData\Local\Composer` on Windows. Stores all the caches
used by composer. See also [COMPOSER_HOME](03-cli.md#composer-home).
* **cache-files-dir:** Defaults to `$cache-dir/files`. Stores the zip archives
of packages.
* **cache-repo-dir:** Defaults to `$cache-dir/repo`. Stores repository metadata
for the `composer` type and the VCS repos of type `svn`, `github` and `bitbucket`.
* **cache-vcs-dir:** Defaults to `$cache-dir/vcs`. Stores VCS clones for
loading VCS repository metadata for the `git`/`hg` types and to speed up installs.
* **cache-files-ttl:** Defaults to `15552000` (6 months). Composer caches all
dist (zip, tar, ..) packages that it downloads. Those are purged after six
months of being unused by default. This option allows you to tweak this
duration (in seconds) or disable it completely by setting it to 0.
* **cache-files-maxsize:** Defaults to `300MiB`. Composer caches all
dist (zip, tar, ..) packages that it downloads. When the garbage collection
is periodically ran, this is the maximum size the cache will be able to use.
Older (less used) files will be removed first until the cache fits.
* **prepend-autoloader:** Defaults to `true`. If false, the composer autoloader
will not be prepended to existing autoloaders. This is sometimes required to fix
interoperability issues with other autoloaders.
* **autoloader-suffix:** Defaults to `null`. String to be used as a suffix for
the generated Composer autoloader. When null a random one will be generated.
* **github-domains:** Defaults to `["github.com"]`. A list of domains to use in
github mode. This is used for GitHub Enterprise setups.
* **notify-on-install:** Defaults to `true`. Composer allows repositories to
define a notification URL, so that they get notified whenever a package from
that repository is installed. This option allows you to disable that behaviour.
* **discard-changes:** Defaults to `false` and can be any of `true`, `false` or
`"stash"`. This option allows you to set the default style of handling dirty
updates when in non-interactive mode. `true` will always discard changes in
vendors, while `"stash"` will try to stash and reapply. Use this for CI
servers or deploy scripts if you tend to have modified vendors.
Example:
{
"config": {
"bin-dir": "bin"
}
}
### scripts <span>(root-only)</span>
Composer allows you to hook into various parts of the installation process
through the use of scripts.
See [Scripts](articles/scripts.md) for events details and examples.
### extra
Arbitrary extra data for consumption by `scripts`.
This can be virtually anything. To access it from within a script event
handler, you can do:
$extra = $event->getComposer()->getPackage()->getExtra();
Optional.
### bin
A set of files that should be treated as binaries and symlinked into the `bin-dir`
(from config).
See [Vendor Binaries](articles/vendor-binaries.md) for more details.
Optional.
### archive
A set of options for creating package archives.
The following options are supported:
* **exclude:** Allows configuring a list of patterns for excluded paths. The
pattern syntax matches .gitignore files. A leading exclamation mark (!) will
result in any matching files to be included even if a previous pattern
excluded them. A leading slash will only match at the beginning of the project
relative path. An asterisk will not expand to a directory separator.
Example:
{
"archive": {
"exclude": ["/foo/bar", "baz", "/*.test", "!/foo/bar/baz"]
}
}
The example will include `/dir/foo/bar/file`, `/foo/bar/baz`, `/file.php`,
`/foo/my.test` but it will exclude `/foo/bar/any`, `/foo/baz`, and `/my.test`.
Optional.
&larr; [Command-line interface](03-cli.md) | [Repositories](05-repositories.md) &rarr;