Skip to content

Commit

Permalink
lock fetch PHPUnit version to 7 for PHP5
Browse files Browse the repository at this point in the history
  • Loading branch information
phy25 committed Sep 9, 2019
1 parent c8f8620 commit 5706b90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _test/fetchphpunit.php
Expand Up @@ -20,10 +20,11 @@
$phpunit = 'phpunit-7.phar';
break;
case '7.4':
$phpunit = 'phpunit-8.phar';
$phpunit = 'phpunit-7.phar';
// PHP 5 backward compatibility lock to PHPUnit 7 (type hinting)
break;
default:
$phpunit = 'phpunit.phar';
$phpunit = 'phpunit-7.phar';

}

Expand Down

0 comments on commit 5706b90

Please sign in to comment.