Skip to content

Commit

Permalink
Update all non-major dependencies (#896)
Browse files Browse the repository at this point in the history
* Update all non-major dependencies

| datasource | package             | from   | to     |
| ---------- | ------------------- | ------ | ------ |
| packagist  | infection/infection | 0.29.6 | 0.29.7 |
| packagist  | phpstan/phpstan     | 1.12.5 | 1.12.6 |
| packagist  | phpunit/phpunit     | 11.3.6 | 11.4.0 |

* Update PHPUnit compatibility to 11.4.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Filippo Tessarotto <zoeslam@gmail.com>
  • Loading branch information
renovate[bot] and Slamdunk authored Oct 7, 2024
1 parent 8134d62 commit 4890b17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,22 @@
"phpunit/php-code-coverage": "^11.0.6",
"phpunit/php-file-iterator": "^5.1.0",
"phpunit/php-timer": "^7.0.1",
"phpunit/phpunit": "^11.3.6",
"phpunit/phpunit": "^11.4.0",
"sebastian/environment": "^7.2.0",
"symfony/console": "^6.4.11 || ^7.1.4",
"symfony/process": "^6.4.8 || ^7.1.3"
"symfony/console": "^6.4.11 || ^7.1.5",
"symfony/process": "^6.4.8 || ^7.1.5"
},
"require-dev": {
"ext-pcov": "*",
"ext-posix": "*",
"doctrine/coding-standard": "^12.0.0",
"infection/infection": "^0.29.6",
"phpstan/phpstan": "^1.12.5",
"infection/infection": "^0.29.7",
"phpstan/phpstan": "^1.12.6",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.1",
"squizlabs/php_codesniffer": "^3.10.3",
"symfony/filesystem": "^6.4.9 || ^7.1.2"
"symfony/filesystem": "^6.4.9 || ^7.1.5"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion src/WrapperRunner/ApplicationForWrapperWorker.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use PHPUnit\Runner\TestSuiteLoader;
use PHPUnit\Runner\TestSuiteSorter;
use PHPUnit\Runner\Version;
use PHPUnit\TestRunner\IssueFilter;
use PHPUnit\TestRunner\TestResult\Facade as TestResultFacade;
use PHPUnit\TextUI\Configuration\Builder;
use PHPUnit\TextUI\Configuration\CodeCoverageFilterRegistry;
Expand Down Expand Up @@ -206,7 +207,7 @@ private function bootstrap(): void
if (isset($this->testdoxFile)) {
$this->testdoxResultCollector = new TestResultCollector(
EventFacade::instance(),
$this->configuration->source(),
new IssueFilter($this->configuration->source()),
);
}

Expand Down

0 comments on commit 4890b17

Please sign in to comment.