Skip to content

Commit 587c663

Browse files
committed
Udpdate configs
1 parent 28ad2d8 commit 587c663

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@
1010
/.phpunit.result.cache
1111
/.phpunit.cache/
1212
/.phpcs-cache
13-
/phpcs.xml

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
},
3333
"require-dev": {
3434
"inspirum/coding-standard": "^1.3",
35-
"phpstan/phpstan": "^1.9",
36-
"phpunit/phpunit": "^10.0",
35+
"phpstan/phpstan": "^1.10",
36+
"phpunit/phpunit": "^10.1",
3737
"squizlabs/php_codesniffer": "^3.7",
3838
"symfony/config": "^6.1",
3939
"symfony/yaml": "^6.1"
@@ -98,7 +98,7 @@
9898
],
9999
"phpunit": "./vendor/bin/phpunit",
100100
"phpcs": "./vendor/bin/phpcs -p -s --extensions=php --colors --report-width=140",
101-
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon.dist",
101+
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
102102
"phpcbf": "./vendor/bin/phpcbf -p --extensions=php",
103103
"infection": "./tools/infection",
104104
"composerRequireChecker": "./tools/composer-require-checker check",

phive.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="composer-unused" version="^0.8.2" installed="0.8.5" location="./tools/composer-unused" copy="false"/>
4-
<phar name="composer-require-checker" version="^4.0.0" installed="4.5.0" location="./tools/composer-require-checker" copy="false"/>
5-
<phar name="infection" version="^0.26.6" installed="0.26.18" location="./tools/infection" copy="false"/>
3+
<phar name="composer-unused" version="^0.8.9" location="./tools/composer-unused" copy="false" installed="0.8.9"/>
4+
<phar name="composer-require-checker" version="^4.6.0" location="./tools/composer-require-checker" copy="false" installed="4.6.0"/>
5+
<phar name="infection" version="^0.26.21" location="./tools/infection" copy="false" installed="0.26.21"/>
66
</phive>
File renamed without changes.
File renamed without changes.

phpunit.xml.dist

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@
1010
</testsuite>
1111
</testsuites>
1212
<coverage>
13-
<include>
14-
<directory suffix=".php">src</directory>
15-
</include>
1613
<report>
1714
<clover outputFile="var/phpunit/logs/clover.xml"/>
1815
<text outputFile="var/phpunit/coverage/coverage.txt"/>
1916
</report>
2017
</coverage>
18+
<source>
19+
<include>
20+
<directory>src</directory>
21+
</include>
22+
</source>
2123
</phpunit>

0 commit comments

Comments
 (0)