2016-04-16 13 views
0

でaimeosバンドルをインストールしようとすると、私はこれらのエラーを取得:は、私はsymfonyのためのaimeosバンドルをインストールしようとSymfony2の

PHP、5.5.1のバージョン、CVE-2013から6420の影響を受けているとすることはできません 安全に証明書の検証を行うには、 アップグレードを強くお勧めします。パッケージ情報を含むコンポーザリポジトリのロード 依存関係の更新(require-devを含む)必要条件は で、パッケージのインストール可能なセットに解決できません。

問題1 - aimeos/aimeos-symfonyのインストール要求〜2016.04 - > aimeos/aimeos-symfony [2016.04.1]が満たすことができます。 - aimeos/aimeos-symfony 2016.04.1には、aimeos/ai-symfonyのdev-master - >一致するパッケージが見つかりません。

考えられる原因: - パッケージ名 のタイプミス - パッケージには、これは上の私のcomposer.jsonファイルです

を設定し、あなたの分IMUM安定性に応じて安定した十分なバージョンでは使用できません。私のsymfonyのフォルダのルート:

{ 
"name": "symfony/framework-standard-edition", 
"license": "MIT", 
"type": "project", 
"description": "The \"Symfony Standard Edition\" distribution", 
"autoload": { 
    "psr-4": { "": "src/" }, 
    "classmap": [ "app/AppKernel.php", "app/AppCache.php" ] 
}, 

"prefer-stable": true, 
"minimum-stability": "dev", 
"require": { 

    "php": ">=5.3.9", 
    "symfony/symfony": "2.8.*", 
    "doctrine/orm": "^2.4.8", 
    "doctrine/doctrine-bundle": "~1.4", 
    "symfony/swiftmailer-bundle": "~2.3", 
    "symfony/monolog-bundle": "~2.4", 
    "sensio/distribution-bundle": "~5.0", 
    "sensio/framework-extra-bundle": "^3.0.2", 
    "incenteev/composer-parameter-handler": "~2.0", 
    "aimeos/aimeos-symfony": "~2016.04" 

}, 
"require-dev": { 
    "sensio/generator-bundle": "~3.0", 
    "symfony/phpunit-bridge": "~2.7" 
}, 
"scripts": { 
    "post-install-cmd": [ 
     "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget", 
     "Aimeos\\ShopBundle\\Composer\\ScriptHandler::installBundle", 
     "Aimeos\\ShopBundle\\Composer\\ScriptHandler::setupDatabase" 
    ], 
    "post-update-cmd": [ 
     "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", 
     "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget", 
     "Aimeos\\ShopBundle\\Composer\\ScriptHandler::installBundle", 
     "Aimeos\\ShopBundle\\Composer\\ScriptHandler::setupDatabase" 
    ] 
}, 
"config": { 
    "bin-dir": "bin", 
    "platform": { 
     "php": "5.3.9" 
    } 
}, 
"extra": { 
    "symfony-app-dir": "app", 
    "symfony-web-dir": "web", 
    "symfony-assets-install": "relative", 
    "incenteev-parameters": { 
     "file": "app/config/parameters.yml" 
    }, 
    "branch-alias": { 
     "dev-master": "2.8-dev" 
    } 
} 

} symfonyの参照を誤って他のDEV-ためAimeosバンドルの

+0

私はそれが正しいかわからないので誰かが私のcomposer.jsonファイルを見ることができます –

答えて

0

2016年4月1日版マスターパッケージであるため、作者でこの行が必要です.json:

"minimum-stability": "dev", 

問題を修正する新しいバージョンは明日リリースされます。

+0

ありがとうしかし、私のcomposer.jsonファイルが正しいかどうかわからない –

+0

あなたはプラットフォームを削除する必要があります - > PHPの設定これは通常、何らかの問題を引き起こすため – Toco

関連する問題