Skip to content

Commit 5cbacb3

Browse files
committed
update php cs fixer config
1 parent f2a85cf commit 5cbacb3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
nbproject
99
composer.lock
1010
docs/html
11+
.phpunit.result.cache

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
],
1717
"require": {
1818
"php": "^7.1 || ^8.0",
19-
"friendsofphp/php-cs-fixer": "^2.17.1"
19+
"friendsofphp/php-cs-fixer": "^3.1"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^7.5 || ^9.5",
22+
"phpunit/phpunit": "^9.5",
2323
"satooshi/php-coveralls": "^1.0"
2424
},
2525
"autoload": {

phpunit.xml.dist

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
bootstrap="vendor/autoload.php"
1312
>
1413
<testsuite name="Prooph CS Fixer Config Test Suite">
1514
<directory>./tests</directory>
1615
</testsuite>
1716

18-
<filter>
19-
<whitelist>
17+
<coverage>
18+
<include>
2019
<directory>./src/</directory>
21-
</whitelist>
22-
</filter>
20+
</include>
21+
</coverage>
2322
</phpunit>

0 commit comments

Comments
 (0)