Skip to content

Commit c391c43

Browse files
committed
tests(deps): update phpunit to 10
1 parent f169e3d commit c391c43

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ vendor
44
logs
55
.php_cs.cache
66
.phpunit.result.cache
7+
.phpunit.cache
78
.DS_Store

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
"email": "luckysud4@gmail.com"
2828
},
2929
"require": {
30-
"php": ">=7.1|^8.0",
30+
"php": ">=7.1|^8.0|^8.1",
3131
"guzzlehttp/guzzle": "^6.5.5|^7.0.1"
3232
},
3333
"require-dev": {
34-
"phpunit/phpunit": "^7.5|^8.4.0|^9.4"
34+
"phpunit/phpunit": "^7.5|^8.4.0|^9.4|^10.0"
3535
},
3636
"extra": {
3737
"branch-alias": {
@@ -55,6 +55,6 @@
5555
}
5656
},
5757
"scripts": {
58-
"test": "phpunit --colors=always"
58+
"test": "phpunit --colors=always --display-deprecations --display-notices --display-warnings"
5959
}
6060
}

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"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" convertDeprecationsToExceptions="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
33
<coverage>
44
<include>
55
<directory suffix=".php">./src/</directory>

0 commit comments

Comments
 (0)