安装期间ZF2依赖性问题

时间:2016-08-25 10:12:25

标签: php zend-framework2 composer-php

我正在ZF2中创建的本地环境中建立一个网站。克隆代码后,我运行composer install并遇到错误。试图搜索一些可能有帮助的答案,但我发现的所有答案都没有,最后在这里发布。以下是我遇到的错误:

Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for zf-commons/zfc-user-doctrine-orm dev-master -> satisfiable by zf-commons/zfc-user-doctrine-orm[dev-master].
    - zf-commons/zfc-user-doctrine-orm dev-master requires doctrine/doctrine-orm-module ~1.0 -> satisfiable by doctrine/doctrine-orm-module[1.0.0] but these conflict with your requirements or minimum-stability.
  Problem 2
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.0
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.1
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.2
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.3
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.4
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.5
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.6
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.7
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.8
    - don't install zendframework/zend-validator 2.8.1|don't install zendframework/zendframework 2.3.9
    - doctrine/doctrine-module dev-master requires zendframework/zend-validator ^2.8.1 -> satisfiable by zendframework/zend-validator[2.8.1].
    - Installation request for doctrine/doctrine-module dev-master -> satisfiable by doctrine/doctrine-module[dev-master].
    - Installation request for zendframework/zendframework 2.3.* -> satisfiable by zendframework/zendframework[2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.3.9].

我的composer.json包含:

{
  "name" : "zendframework/skeleton-application",
  "description" : "Skeleton Application for ZF2",
  "require" : {
    "php" : ">=5.3.3",
    "zendframework/zendframework" : "2.3.*",
    "zendframework/zend-developer-tools" : "dev-master",
    "zf-commons/zfc-user" : "1.*",
    "doctrine/doctrine-module" : "dev-master",
    "doctrine/doctrine-orm-module" : "dev-master",
    "zendframework/zftool" : "dev-master",
    "zf-commons/zfc-user-doctrine-orm" : "dev-master",
    "beberlei/DoctrineExtensions" : "1.0"
  },

  "keywords" : [ "framework", "zf2" ],
  "license" : "BSD-3-Clause",
  "homepage" : "http://framework.zend.com/"
}

尝试更改版本,但似乎无法获得正确的版本。任何帮助将不胜感激。

更新:
应用@ al-fonce建议的更改后,错误将减少为:

Problem 1
    - Installation request for doctrine/doctrine-orm-module 0.8.* -> satisfiable by doctrine/doctrine-orm-module[0.8.0].
    - doctrine/doctrine-orm-module 0.8.0 requires doctrine/doctrine-module 0.8.* -> satisfiable by doctrine/doctrine-module[0.8.0, 0.8.0-beta1, 0.8.0-beta2, 0.8.1] but these conflict with your requirements or minimum-stability.
  Problem 2
    - Installation request for zf-commons/zfc-user-doctrine-orm dev-master -> satisfiable by zf-commons/zfc-user-doctrine-orm[dev-master].
    - zf-commons/zfc-user-doctrine-orm dev-master requires doctrine/doctrine-orm-module ~1.0 -> satisfiable by doctrine/doctrine-orm-module[1.0.0] but these conflict with your requirements or minimum-stability.

谢谢!

1 个答案:

答案 0 :(得分:2)

您使用某些模块的dev-master版本,这需要您使用的更高版本的Zend-Framework。 Doctrine2 dev-master版本是针对Zend Framework 2.3的最新版本。对于ZF2.5网站上的Doctrine2,我使用

"zendframework/zendframework": "~2.5",
"doctrine/doctrine-orm-module": "~1.0"

对于旧的Zend Framework 2.3项目,我使用了Doctrine 0.8,因此如果Doctrine的1.0版不起作用,请尝试:

"zendframework/zendframework": "~2.3",
"doctrine/doctrine-orm-module": "0.8.*"
相关问题