Skip to content

Commit 1498af7

Browse files
authored
Merge pull request #288 from WyriHaximus/Update-wyrihaximus-test-utilities-to-7.4-PLUS-update-QA-config
Update wyrihaximus/test-utilities to 7.4 + update QA config
2 parents 868d69d + 70d491c commit 1498af7

File tree

7 files changed

+41
-93
lines changed

7 files changed

+41
-93
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"react/promise": "^3.2.0",
1717
"wyrihaximus/phpstan-react": "^2.0.0",
1818
"wyrihaximus/react-phpunit-run-tests-in-fiber": "^3.0.0",
19-
"wyrihaximus/test-utilities": "^7.3.0"
19+
"wyrihaximus/test-utilities": "^7.4.0"
2020
},
2121
"require-dev": {
2222
"react/promise-timer": "^1.11.0",

composer.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etc/qa/composer-unused.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
use ComposerUnused\ComposerUnused\Configuration\Configuration;
66
use ComposerUnused\ComposerUnused\Configuration\NamedFilter;
77

8-
return static function (Configuration $config): Configuration {
9-
return $config
10-
->addNamedFilter(NamedFilter::fromString('wyrihaximus/phpstan-react'));
11-
};
8+
return static fn (Configuration $config): Configuration => $config
9+
->addNamedFilter(NamedFilter::fromString('wyrihaximus/phpstan-react'));

etc/qa/phpcs.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<arg name="cache" value=".phpcs.cache" /> <!-- cache the results and don't commit them -->
77
<arg value="np" /> <!-- n = ignore warnings, p = show progress -->
88

9+
<file>../../etc</file>
910
<file>../../src</file>
1011
<file>../../tests</file>
1112

etc/qa/phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory="../../var/phpunit/cache">
33
<testsuites>
44
<testsuite name="Test Suite">
55
<directory>../../tests/</directory>

etc/qa/psalm.xml

Lines changed: 0 additions & 58 deletions
This file was deleted.

etc/qa/rector.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use WyriHaximus\TestUtilities\RectorConfig;
6+
7+
return RectorConfig::configure(dirname(__DIR__, 2));

0 commit comments

Comments
 (0)