2014-01-24 72 views
0

有沒有什麼辦法可以通過直接從git-hub下載而不需要php composer.phar來安裝模塊。因爲我的php作曲家沒有工作。從git zendframework安裝模塊2

這是錯誤

$ php composer.phar require webino/webino-image-thumb:2.* 
./composer.json has been updated 
Loading composer repositories with package information 
Ignoring unknown parameter "server role" 
Updating dependencies (including require-dev) 
Your requirements could not be resolved to an installable set of packages. 

    Problem 1 
    - Can only install one of: zf-commons/zfc-admin[v0.1.0, dev-master]. 
    - Can only install one of: zf-commons/zfc-admin[v0.1.0, dev-master]. 
    - Installation request for zf-commons/zfc-admin 0.1.0 -> satisfiable by zf-commons/zfc-admin[v0.1.0]. 
    - Installation request for zf-commons/zfc-admin == 9999999-dev -> satisfiable by zf-commons/zfc-admin[dev-master]. 


Installation failed, reverting ./composer.json to its original content. 

我composer.json看起來是這樣的:

{ 
    "name": "zendframework/skeleton-application", 
    "description": "Skeleton Application for ZF2", 
    "license": "BSD-3-Clause", 
    "keywords": [ "framework", "zf2" ], 
    "minimum-stability": "dev", 
    "homepage": "framework.zend.com/", 
    "require": { 
     "php": ">=5.3.3", 
     "zendframework/zendframework": "2.2.0", 
     "webino/webino-image-thumb": "1.*", 
     "zf-commons/zfc-admin":"0.1.0" 
    } 
} 
+0

[zend framework 2 composer.php]可能的重複(http://stackoverflow.com/questions/21307370/zend-framework-2-composer-php) – Xerkus

+0

檢查你是否有〜/ .composer/config.json – Xerkus

回答

0

有您通常可以安裝的Zend 2個模塊三種方式。

  • 通過文件系統
  • 的Git
  • 作曲

你可以只運行:

https://github.com/ZF-Commons/ZfcAdmin.git 

得到模塊。但是我不確定它是否會起作用,因爲您可能存在需要解決的依賴性問題。我會建議堅持與作曲家。請發佈您的整個composer.json文件,我相信這個問題可以解決。

+0

{ 「名稱」: 「zendframework /骨架的應用」, 「描述」: 「用於ZF2骨架的應用」, 「許可證」: 「BSD -3-條款」, 「關鍵字」:[ 「框架」 , 「ZF2」 ], 「最小穩定」: 「dev的」, 「主頁」: 「http://framework.zend.com/」, 「需要」:{ 「PHP」:「> = 5.3.3「, 」zendframework/zendfr amework「:」2.2.0「, 」webino/webino-image-thumb「:」1. *「, 」zf-commons/zfc-admin「:」0.1.0「 } } – Lanka

+0

風格您的意見和文章 – Lanka

+0

http://stackoverflow.com/editing-help –

0

我無法重現您的錯誤。

我將您的composer.json文件複製到一個空目錄中並在那裏執行composer install。作品。

然後我發行composer require webino/webino-image-thumb:2.*,它下載該版本(2.0.0-RC1)就好了。

+0

他有包的衝突版本依賴關係 – Xerkus

+0

爲什麼我無法重現這些錯誤? – Sven