Skip to content

Commit 8f4c226

Browse files
committed
bump checks
1 parent 1d79a01 commit 8f4c226

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"minimum-stability": "dev",
3333
"prefer-stable": true,
3434
"require": {
35-
"php": "^8.1",
35+
"php": "8.1 - 8.4",
3636
"alexkart/curl-builder": "^1.0",
3737
"gitonomy/gitlib": "^1.3",
3838
"guzzlehttp/guzzle": "^7.5",
@@ -71,7 +71,7 @@
7171
"yiisoft/active-record": "dev-master",
7272
"yiisoft/assets": "^4.0",
7373
"yiisoft/csrf": "^2.0",
74-
"yiisoft/db": "1.2 as dev-master",
74+
"yiisoft/db": "1.3 as dev-master",
7575
"yiisoft/db-sqlite": "^1.0",
7676
"yiisoft/psr-dummy-provider": "^1.0",
7777
"yiisoft/router-fastroute": "^4.0",
@@ -110,7 +110,7 @@
110110
}
111111
},
112112
"scripts": {
113-
"test": "phpunit --testdox --no-interaction",
113+
"test": "phpunit --testdox",
114114
"test-watch": "phpunit-watcher watch"
115115
},
116116
"config": {

phpunit.xml.dist

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
<phpunit bootstrap="vendor/autoload.php"
44
colors="true"
5-
verbose="true"
65
failOnRisky="true"
76
failOnWarning="true"
8-
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
7+
failOnDeprecation="true"
8+
failOnNotice="true"
9+
displayDetailsOnTestsThatTriggerDeprecations="true"
10+
beStrictAboutCoverageMetadata="true"
11+
beStrictAboutOutputDuringTests="true"
1112
stopOnFailure="false"
1213
executionOrder="random"
1314
resolveDependencies="true">
@@ -21,9 +22,9 @@
2122
</testsuite>
2223
</testsuites>
2324

24-
<coverage>
25+
<source>
2526
<include>
2627
<directory>./src</directory>
2728
</include>
28-
</coverage>
29+
</source>
2930
</phpunit>

0 commit comments

Comments
 (0)