我正在尝试安装Xdebug,但似乎不起作用。 我会解释:我想使用PHPUnit,但有以下消息:
没有代码覆盖率驱动程序
我搜索了一下,发现这是Xdebug的问题。我在WAMP中的php.init中进行了更改,我有这个:
; XDEBUG Extension
[xdebug]
zend_extension="D:/wamp64/bin/php/php5.6.35/zend_ext/php_xdebug-2.5.5-5.6-vc11-x86_64.dll"
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="D:/wamp64/tmp"
xdebug.show_local_vars=0
在composer.json中,我有:
"require-dev": {
"symfony/debug": "^3.4.17",
"phpunit/php-code-coverage": "^4.0",
"sensio/generator-bundle": "^3.0",
"phpunit/phpunit": "^5.7",
"symfony/phpunit-bridge": "^3.0"
},
在AppKernel.php中:
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
我不知道该怎么办...