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 有什么区别?
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01