Skip to content

Commit a064c5b

Browse files
renovate-runner[bot]WyriHaximus
authored andcommitted
Update dependency wyrihaximus/makefiles to ^0.7.10
1 parent 293693d commit a064c5b

File tree

16 files changed

+250
-142
lines changed

16 files changed

+250
-142
lines changed
File renamed without changes.

Makefile

Lines changed: 172 additions & 21 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"require-dev": {
1919
"wyrihaximus/async-test-utilities": "^10.4.0",
20-
"wyrihaximus/makefiles": "^0.5.0"
20+
"wyrihaximus/makefiles": "^0.7.10"
2121
},
2222
"autoload": {
2323
"psr-4": {

composer.lock

Lines changed: 14 additions & 11 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: 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 ComposerUnused\ComposerUnused\Configuration\Configuration;
6+
7+
return static fn (Configuration $config): Configuration => $config;

etc/qa/infection.json5

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"timeout": 120,
3+
"source": {
4+
"directories": [
5+
"src"
6+
]
7+
},
8+
"logs": {
9+
"text": "../../var/infection.log",
10+
"summary": "../../var/infection-summary.log",
11+
"json": "../../var/infection.json",
12+
"perMutator": "../../var/infection-per-mutator.md",
13+
"github": true
14+
},
15+
"mutators": {
16+
"@default": true
17+
}
18+
}

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/phpstan.neon

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
parameters:
2+
paths:
3+
- ../../etc
4+
- ../../src
5+
- ../../tests
26
level: max

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="../../var/phpunit/cache" displayDetailsOnTestsThatTriggerWarnings="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd" cacheDirectory="../../var/phpunit/cache" displayDetailsOnTestsThatTriggerWarnings="true">
33
<testsuites>
44
<testsuite name="Test Suite">
55
<directory>../../tests/</directory>

0 commit comments

Comments
 (0)