Table of Contents
回复内容:
Home Backend Development PHP Tutorial 话说现在写PHP的用composer的多不多啊,我有一个问题请教大神

话说现在写PHP的用composer的多不多啊,我有一个问题请教大神

Jun 06, 2016 pm 08:08 PM
composer php

我有一个问题:一般是在项目目录的vendor目录下创建composer.json文件,里面有要引入的包,命令行切换到vendor目录下面,composer update就会下载这些依赖,下载的包会在vendor目录下面,但是如果包之间相互依赖,而出现依赖相同的包,但是不一样的版本,那怎么办呢,这不就冲突了吗?

比如我要引入A包和B包,他们又同时依赖C包,A依赖C 1.0.0版本,B依赖C 2.0.0版本,那这样C包不冲突了吗,如果vendor目录下面的包目录是带版本号就好了,不然可怎么办呢?

回复内容:

我有一个问题:一般是在项目目录的vendor目录下创建composer.json文件,里面有要引入的包,命令行切换到vendor目录下面,composer update就会下载这些依赖,下载的包会在vendor目录下面,但是如果包之间相互依赖,而出现依赖相同的包,但是不一样的版本,那怎么办呢,这不就冲突了吗?

比如我要引入A包和B包,他们又同时依赖C包,A依赖C 1.0.0版本,B依赖C 2.0.0版本,那这样C包不冲突了吗,如果vendor目录下面的包目录是带版本号就好了,不然可怎么办呢?

同一个包,不指定版本的话,通常是下载的最新的版本,需要中间版本,可以指定版本。

具体规则如下:

  1. 确切的版本号 1.0.2 你可以指定包的确切版本。

  2. 范围 >=1.0 >=1.0,=1.0,=1.2 通过使用比较操作符可以指定有效的版本范围。 有效的运算符:>、>=、你可以定义多个范围,用逗号隔开,这将被视为一个逻辑AND处理。一个管道符号|将作为逻辑OR处理。 AND 的优先级高于 OR。

  3. 通配符 1.0.* 你可以使用通配符来指定一种模式。1.0.与>=1.0,

  4. 赋值运算符 ~1.2 这对于遵循语义化版本号的项目非常有用。~1.2相当于>=1.2,

上面的「未注册用户」说了些干货,但是似乎理解错了题主的意思。 题主的意思应该是,两个包(比如 AB)同时依赖与第三个包(比如 C),但是依赖的版本并不同(比如 A 依赖 C 1.0B 依赖 C 2.0),怎么解决冲突的问题。

我的答案是,没法解决。在同一个项目中,某个包的版本肯定是固定的。
无论是用了 精准版本号范围版本赋值版本号 之类的方式指定版本,在 composer require 或者 composer install 之后,本地的包的版本一定是有一个准确版本号了。不可能运行时做到 A 使用 C 的时候 C 就是 1.0B 使用 C 的时候 C 就是 2.0

所以唯一的办法就是找到一个 AB 都能用的 C 的版本。如果不能,不好意思,包冲突,无法运行。


补充说明,这个C版本冲突其实是代码逻辑的冲突,不是简单的文件夹冲突,靠改变文件夹是没法解决的。
以我上面举的例子说明,假如包 C 定义了一个常量 C_VERSION,这个常量的值表示 C 本身的版本号字符串。

那一个同时加载了 AB 的程序运行的时候,输出 C_VERSION,到底是 1.0 还是 2.0 呢?

真实常见的情况是,程序运行报错,因为两次引入不同的包 C 发生冲突,报 notice,然后谁先加载就是谁。

这代码也就太乱了。

难道大家这个用得还不多吗,不会吧

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

See all articles