【发布时间】:2018-08-22 10:04:44
【问题描述】:
我有 PHPUnit v4.7,我尝试升级到 v5。那么为什么没有安装代码覆盖率,我该如何解决呢?我已经尝试完全删除 phpunit 文件夹。我正在使用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.
更新:这是我的 composer.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"
}
}
【问题讨论】:
-
你试图查看你的
composer.json? -
@AlexKarshin 是的,我不知道缺少什么,请参阅pastebin.com/un9Hpan8
-
只需将所需版本的
phpunit/php-code-coverage添加到您的composer.json中怎么样?
标签: php phpunit composer-php wamp