2017-04-20 2 views
0

를 통해 yohkenn/심포니 - 재 스퍼 보고서 - 번들을 설치하는 동안 나는이 명령오류 작곡가

composer require yohkenn/jasper-report-bundle 

를 사용하여 작곡가로 yohkenn/심포니 - 재 스퍼 보고서 - 번들을 설치하려고하지만 난이 오류가

여기
C:\wamp\www\ 
C:\wamp\www\Syslife_new>composer require yohkenn/jasper-report-bundle 1.1 
./composer.json has been updated 
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 
    - The requested package yohkenn/jasper-report-bundle could not be found in any version, there may be a typo in the package 
name. 

Potential causes: 
- A typo in the package name 
- The package is not available in a stable-enough version according to your minimum-stability setting 
    see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details. 

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems. 

Installation failed, reverting ./composer.json to its original content. 
>composer require yohkenn/jasper-report-bundle 1.1 
    ./composer.json has been updated 
    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 
     - The requested package yohkenn/jasper-report-bundle could not be found in any version, there may be a typo in the package 
    name. 

    Potential causes: 
    - A typo in the package name 
    - The package is not available in a stable-enough version according to your minimum-stability setting 
     see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details. 

    Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems. 

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

는 수

{ 
    "name": "um/frontal", 
    "license": "proprietary", 
    "type": "project", 
    "autoload": { 
     "psr-4": { 
      "": "src/" 
     }, 
     "classmap": [ 
      "app/AppKernel.php", 
      "app/AppCache.php" 
     ] 
    }, 
    "require": { 
     "php": ">=5.5.12", 
     "symfony/symfony": "~3.0", 
     "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", 
     "symfony/assetic-bundle": "^2.8", 
     "friendsofsymfony/user-bundle": "[email protected]", 
     "friendsofsymfony/jsrouting-bundle": "^1.6", 
     "friendsofsymfony/rest-bundle": "^2.0", 
     "jms/serializer-bundle": "^1.1", 
     "vich/uploader-bundle": "^1.3", 
     "knplabs/knp-snappy-bundle": "^1.4", 
     "tetranz/select2entity-bundle": "2.*", 
     "geekcom/phpjasper": "1.*", 
     "umpirsky/symfony-upgrade-fixer": "^0.1.6" 
    }, 
    "require-dev": { 
     "sensio/generator-bundle": "~3.0", 
     "symfony/phpunit-bridge": "^3.2" 
    }, 
    "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" 
     ], 
     "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" 
     ] 
    }, 
    "config": { 
     "bin-dir": "bin", 
     "platform": { 
      "php": "5.5.12" 
     } 
    }, 
    "extra": { 
     "symfony-app-dir": "app", 
     "symfony-web-dir": "web", 
     "symfony-var-dir": "var", 
     "symfony-bin-dir": "bin", 
     "symfony-assets-install": "relative", 
     "incenteev-parameters": { 
      "file": "app/config/parameters.yml" 
     } 
    } 
} 

나는 그들이 "최소한의 안정성"에 의해 무슨 뜻인지 모르는 사람 내 composer.json입니다 도와주세요 ?

+0

composer.json 파일을 게시 할 수 있습니까? – Matteo

+0

물론 내 게시물을 업데이트했습니다. – Chaaaaz

답변

1

흠 ...

당신의 명령에 오타가 있다고 생각합니다.

질문에서 명령을 실행하면 비슷한 오류가 발생합니다. 내가 https://packagist.org/packages/yohkenn/symfony-jasper-report-bundle

composer require yohkenn/symfony-jasper-report-bundle

모두에서 명령을 사용

하지만, 잘 어울린다.

귀하의 명령에 symfony 부분이 누락되었습니다.

+0

예, 감사합니다. 심포니를 놓쳤습니다. – Chaaaaz