What#39;s the difference between require and require-dev?(require 和 require-dev 有什么区别?)
问题描述
我是 composer
的新手,我想知道 require
和 require-dev
之间的区别.作曲家网站没有很好地解释这两者之间的区别.
I'm new to the composer
and I would like to know the difference between require
and require-dev
.
The composer website doesn't offer a good explanation the difference between these two.
我没有得到的部分是 列出开发此包或运行测试等所需的包.
来自 作曲家官方文档.
The part that I don't get is Lists packages required for developing this package, or running tests, etc.
from Composer Official Docs.
推荐答案
require-dev
包是对于您的项目工作来说不是必需的包,并且 不应包含在您项目的生产版本中.
The require-dev
packages are packages that aren't necessary for your project to work and shouldn't be included in the production version of your project.
通常,这些是诸如 phpunit/phpunit
之类的包,您只会在开发期间使用.
Typically, these are packages such as phpunit/phpunit
that you would only use during development.
这篇关于require 和 require-dev 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:require 和 require-dev 有什么区别?


基础教程推荐
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- php中的foreach复选框POST 2021-01-01
- Web 服务器如何处理请求? 2021-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php中的PDF导出 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 将变量从树枝传递给 js 2022-01-01