build: Drop forked PHPUnit version for test:size convenience method

This repo shouldn't have its own definition of what version of PHPUnit
the MediaWiki world is running.

This partially reverts I3a1f246c57f3021659c23299e151389c0ae77f87.

Change-Id: I2b52536be5c823d806fb089053f51a462449f1f8
This commit is contained in:
James D. Forrester 2023-02-10 15:59:35 -05:00
parent 175c01987a
commit c1f8df55c4

View file

@ -1,12 +1,10 @@
{
"require-dev": {
"johnkary/phpunit-speedtrap": "^3.1",
"mediawiki/mediawiki-codesniffer": "39.0.0",
"mediawiki/mediawiki-phan-config": "0.11.1",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "^8.5.0"
"php-parallel-lint/php-parallel-lint": "1.3.2"
},
"scripts": {
"test": [
@ -18,7 +16,7 @@
"minus-x fix .",
"phpcbf"
],
"test:size": "phpunit -c ../../phpunit.xml.dist tests/phpunit/structure/BundleSizeTest.php",
"test:size": "php ../../vendor/phpunit/phpunit/phpunit -c ../../phpunit.xml.dist tests/phpunit/structure/BundleSizeTest.php",
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache"
}