- I'm currently running the following PHP/Xdebug setup:
PHP 7.2.15-0ubuntu0.18.10.1 (cli) (built: Feb 8 2019 14:54:22) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.2.15-0ubuntu0.18.10.1, ...
with Xdebug v2.6.0, Copyright (c) 2002-2018, by Derick Rethans
Reading up on Installing PHPUnit, the docs state that --based on my installed version of PHP (7.2.15) -- I need to install PHPUnit 8.0. And the code coverage report feature for PHPUnit 8.0 requires the Xdebug (2.7.0 or later) and tokenizer extensions. Generating XML reports requires the xmlwriter extension.
But, I'm running Xdebug v2.6.0. So I ran
sudo apt-get install php-xdebug
to try to update Xdebug and saw this...
Reading package lists... Done
Building dependency tree
Reading state information... Done
php-xdebug is already the newest version (2.6.0-0ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
So... I cant upgrade? ...now what?