提问者:小点点

我不能升级PHPUnit 5与作曲家使用PHP 5.6在WAMP


我有phpunitv4。我试着去v5。那么,为什么没有安装代码覆盖率以及如何修复它呢?我已经尝试完全删除phpunit文件夹。我正在使用install命令,如中所示https://phpunit.de/getting-started/phpunit-5.html

这是我的输出:

c:\[path to]\composer require --dev phpunit/phpunit ^5
./composer.json has been updated
> php artisan clear-compiled
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 phpunit/phpunit 5 -> satisfiable by phpunit/phpunit[5.0.0].
    - Conclusion: don't install phpunit/php-code-coverage 2.2.4
    - phpunit/phpunit 5.0.0 requires phpunit/php-code-coverage ~3.0 -> satisfiable by phpunit/php-code-coverage[3.0.0, 3.0.1, 3.0.2, 3.1.0, 3.1.1, 3.2.0, 3.2.1, 3.3.0, 3.3.1, 3.3.2, 3.3.3].
    - Can only install one of: phpunit/php-code-coverage[3.0.0, 2.2.4].
   ... <repeated with more versions>
    - Can only install one of: phpunit/php-code-coverage[3.3.3, 2.2.4].
    - Installation request for phpunit/php-code-coverage (locked at 2.2.4) -> satisfiable by phpunit/php-code-coverage[2.2.4].


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

更新:这是我的作曲家。json

{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "type": "project",
    "require": {
        "laravel/framework": "5.0.*",
        "illuminate/html": "^5.0",
        "adamwathan/bootforms": "@dev",
        "patricktalmadge/bootstrapper": "~5",
        "frozennode/administrator": "^5.0"
    },
    "require-dev": {
        "fzaninotto/faker": "~1.4",
        "mockery/mockery": "0.9.*",
        "phpunit/phpunit": "^5",
        "laracasts/integrated": "^0.15.6"        
    },
    "autoload": {
        "classmap": [
            "database"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/TestCase.php"
        ]
    },
    "scripts": {
        "post-install-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "pre-update-cmd": [
            "php artisan clear-compiled"
        ],
        "post-update-cmd": [
            "php artisan optimize"
        ],
        "post-root-package-install": [
            "php -r \"copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "php artisan key:generate"
        ]
    },
    "config": {
        "preferred-install": "dist"
    }
}

共1个答案

匿名用户

您的phpUnit/php-code-覆盖率已经锁定在2.2.4(检查composer.lock这需要phpUnit/phpUnit~4(请参阅:作曲家show-a phpUnit/php-code-覆盖率2.2.4),并且您正在尝试安装phpUnit/phpUnit5

现在,phpunit/phpunit5.0。0需要phpunit/php代码覆盖率~3.0

$ composer show -a phpunit/phpunit 5.0.0 | grep coverage
phpunit/php-code-coverage ~3.0

其中锁定的版本为2.2。4,并且您不能同时拥有这两个(3.3.32.2.4)。

若要查看锁定特定包的原因,请运行:

composer why -t phpunit/php-code-coverage

注意:您还可以在末尾添加版本/约束

因此,您可以尝试:

>

  • 通过以下方式更新现有软件包和所有依赖项:

    composer update --with-dependencies
    

    通过以下方式更新失败的特定程序包:

    composer update phpunit/php-code-coverage --with-dependencies
    

    删除编写器。通过以下方式锁定并重新安装所有软件包:

    composer install
    

    要查看当前的依赖关系树,请运行:

    composer show -t
    

    另见:

    • 如何解决一个“只能安装一个:”的冲突
    • 如何解释编写者的错误日志