Unverified Commit 53b4bf9c authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3106918 by longwave, mondrake, Gábor Hojtsy: Drop support of PHPUnit 6...

Issue #3106918 by longwave, mondrake, Gábor Hojtsy: Drop support of PHPUnit 6 in Drupal 9 because it will never get used anyway
parent baf8e01e
Loading
Loading
Loading
Loading
+1 −1
Changes for composer.json: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
        "composer/composer": "^1.9.1",
        "drupal/coder": "^8.3.7",
        "mikey179/vfsstream": "^1.6.8",
        "phpunit/phpunit": "^6.5 || ^7",
        "phpunit/phpunit": "^7",
        "phpspec/prophecy": "^1.7",
        "symfony/css-selector": "^4.4",
        "symfony/phpunit-bridge": "^4.4",
+167 −215

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Changes for composer/Metapackage/DevDependencies/composer.json: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
        "justinrainbow/json-schema": "^5.2",
        "mikey179/vfsstream": "^1.6.8",
        "phpspec/prophecy": "^1.7",
        "phpunit/phpunit": "^6.5 || ^7",
        "phpunit/phpunit": "^7",
        "symfony/browser-kit": "^4.4",
        "symfony/css-selector": "^4.4",
        "symfony/debug": "^4.4",
+17 −18
Changes for composer/Metapackage/PinnedDevDependencies/composer.json: 17 added lines, 18 removed lines.
Original line number Diff line number Diff line
@@ -23,30 +23,29 @@
        "instaclick/php-webdriver": "1.4.6",
        "justinrainbow/json-schema": "5.2.8",
        "mikey179/vfsstream": "v1.6.8",
        "myclabs/deep-copy": "1.7.0",
        "phar-io/manifest": "1.0.1",
        "phar-io/version": "1.0.1",
        "phpdocumentor/reflection-common": "1.0.1",
        "phpdocumentor/reflection-docblock": "4.3.2",
        "phpdocumentor/type-resolver": "0.5.1",
        "phpspec/prophecy": "1.9.0",
        "phpunit/php-code-coverage": "5.3.2",
        "phpunit/php-file-iterator": "1.4.5",
        "myclabs/deep-copy": "1.9.5",
        "phar-io/manifest": "1.0.3",
        "phar-io/version": "2.0.1",
        "phpdocumentor/reflection-common": "2.0.0",
        "phpdocumentor/reflection-docblock": "4.3.4",
        "phpdocumentor/type-resolver": "1.0.1",
        "phpspec/prophecy": "v1.10.2",
        "phpunit/php-code-coverage": "6.1.4",
        "phpunit/php-file-iterator": "2.0.2",
        "phpunit/php-text-template": "1.2.1",
        "phpunit/php-timer": "1.0.9",
        "phpunit/php-token-stream": "2.0.2",
        "phpunit/phpunit": "6.5.14",
        "phpunit/phpunit-mock-objects": "5.0.10",
        "phpunit/php-timer": "2.1.2",
        "phpunit/php-token-stream": "3.1.1",
        "phpunit/phpunit": "7.5.20",
        "sebastian/code-unit-reverse-lookup": "1.0.1",
        "sebastian/comparator": "2.1.3",
        "sebastian/diff": "2.0.1",
        "sebastian/environment": "3.1.0",
        "sebastian/comparator": "3.0.2",
        "sebastian/diff": "3.0.2",
        "sebastian/environment": "4.2.3",
        "sebastian/exporter": "3.1.2",
        "sebastian/global-state": "2.0.0",
        "sebastian/object-enumerator": "3.0.3",
        "sebastian/object-reflector": "1.1.1",
        "sebastian/recursion-context": "3.0.0",
        "sebastian/resource-operations": "1.0.0",
        "sebastian/resource-operations": "2.0.1",
        "sebastian/version": "2.0.1",
        "seld/jsonlint": "1.7.1",
        "seld/phar-utils": "1.0.1",
@@ -59,6 +58,6 @@
        "symfony/lock": "v4.4.2",
        "symfony/phpunit-bridge": "v4.4.2",
        "theseer/tokenizer": "1.1.3",
        "webmozart/assert": "1.5.0"
        "webmozart/assert": "1.6.0"
    }
}
+0 −24
Changes for core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit6/AfterSymfonyListener.php: 0 added lines, 24 removed lines.
Original line number Diff line number Diff line
<?php

namespace Drupal\TestTools\PhpUnitCompatibility\PhpUnit6;

use PHPUnit\Framework\Test;
use PHPUnit\Framework\TestListener;
use PHPUnit\Framework\TestListenerDefaultImplementation;

/**
 * Listens to PHPUnit test runs.
 *
 * @internal
 */
class AfterSymfonyListener implements TestListener {
  use TestListenerDefaultImplementation;

  /**
   * {@inheritdoc}
   */
  public function endTest(Test $test, $time) {
    restore_error_handler();
  }

}
Loading