Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/259.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 安装过程中的ZF2依赖性问题_Php_Zend Framework2_Composer Php - Fatal编程技术网

Php 安装过程中的ZF2依赖性问题

Php 安装过程中的ZF2依赖性问题,php,zend-framework2,composer-php,Php,Zend Framework2,Composer Php,我正在建立一个关于我在ZF2中创建的本地环境的网站。克隆代码后,我运行了composer安装,遇到了错误。试图寻找一些可能有帮助的答案,但我发现没有一个对我有用,最后把它贴在了这里。以下是我遇到的错误: Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an i

我正在建立一个关于我在ZF2中创建的本地环境的网站。克隆代码后,我运行了
composer安装
,遇到了错误。试图寻找一些可能有帮助的答案,但我发现没有一个对我有用,最后把它贴在了这里。以下是我遇到的错误:

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.

谢谢

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

"zendframework/zendframework": "~2.5",
"doctrine/doctrine-orm-module": "~1.0"
对于一个旧的Zend Framework 2.3项目,我使用了条令0.8,因此如果条令1.0版不起作用,请尝试:

"zendframework/zendframework": "~2.3",
"doctrine/doctrine-orm-module": "0.8.*"

谢谢你的回答,这似乎减少了错误。我现在已经更新了我的帖子。。。