Skip to content

Commit fe8804e

Browse files
committed
Update metafiles
1 parent fc8a5ef commit fe8804e

File tree

5 files changed

+40
-32
lines changed

5 files changed

+40
-32
lines changed

.editorconfig

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ indent_style = space
88
indent_size = 4
99
trim_trailing_whitespace = true
1010

11-
[*.{yml, yaml, sh, conf, neon*}]
11+
[*.yaml]
12+
indent_size = 2
13+
14+
[*.yml]
1215
indent_size = 2
1316

1417
[*.md]
1518
trim_trailing_whitespace = false
19+
20+
[Makefile]
21+
indent_style = tab

.gitattributes

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
* text=auto
22

3-
/.github export-ignore
4-
/tests export-ignore
5-
/.* export-ignore
6-
/phpunit.xml* export-ignore
7-
/phpstan.* export-ignore
8-
/psalm.* export-ignore
9-
/infection.* export-ignore
10-
/codecov.* export-ignore
3+
/.* export-ignore
4+
/tests export-ignore
5+
/phpunit.xml* export-ignore
6+
/psalm.* export-ignore
7+
/psalm-baseline.xml export-ignore
8+
/infection.* export-ignore
9+
/rector.php export-ignore

.gitignore

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
# Composer lock file
2-
composer.lock
3-
4-
# IDEs
5-
/.idea
6-
/.vscode
7-
8-
# Vendors
9-
/vendor
10-
**/vendor
11-
12-
# Temp dirs & trash
13-
/tests/server*
14-
clover*
15-
cover*
16-
.DS_Store
17-
*.cache
18-
19-
.phpunit.cache/
20-
.phpunit.result.cache
1+
/.*
2+
!/.github/
3+
!/.php-cs-fixer.dist.php
4+
!/.editorconfig
5+
!/.gitattributes
6+
/runtime/
7+
/vendor/
8+
/composer.lock
9+
*.log

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"require-dev": {
5050
"jetbrains/phpstorm-attributes": "^1.0",
5151
"nyholm/psr7": "^1.3",
52-
"phpunit/phpunit": "^10.0",
52+
"phpunit/phpunit": "^10.5",
5353
"spiral/code-style": "^2.3",
5454
"spiral/dumper": "^3.3",
5555
"symfony/process": "^6.2 || ^7.0",

phpunit.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,36 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
cacheResultFile="runtime/phpunit/result.cache"
46
backupGlobals="false" colors="true"
57
processIsolation="false"
68
executionOrder="random"
79
stopOnFailure="false"
810
stopOnError="false"
911
stderr="true"
10-
cacheDirectory=".phpunit.cache"
1112
>
1213
<testsuites>
1314
<testsuite name="RR Worker Tests">
1415
<directory>tests</directory>
1516
</testsuite>
1617
</testsuites>
1718
<coverage>
19+
<report>
20+
<html outputDirectory="runtime/coverage"/>
21+
<text outputFile="runtime/coverage.txt"/>
22+
<clover outputFile="runtime/logs/clover.xml"/>
23+
</report>
24+
</coverage>
25+
<logging>
26+
<junit outputFile="runtime/report.junit.xml"/>
27+
</logging>
28+
<source>
1829
<include>
1930
<directory>src</directory>
2031
</include>
21-
</coverage>
32+
<exclude>
33+
<directory>tests</directory>
34+
</exclude>
35+
</source>
2236
</phpunit>

0 commit comments

Comments
 (0)