Skip to content

Commit 6079dfa

Browse files
committed
Bump testbench and phpunit versions
1 parent c8a712b commit 6079dfa

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.lock
22
/.idea
33
/vendor
4+
/.phpunit.cache
45
/.php-cs-fixer.cache
56
/.phpunit.result.cache

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
}
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "^9.3",
29-
"orchestra/testbench": "^7.0",
28+
"phpunit/phpunit": "^10.0",
29+
"orchestra/testbench": "^8.0",
3030
"friendsofphp/php-cs-fixer": "^3.14"
3131
},
3232
"autoload-dev": {

phpunit.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupStaticAttributes="false"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
34
colors="true"
4-
convertErrorsToExceptions="true"
5-
convertNoticesToExceptions="true"
6-
convertWarningsToExceptions="true"
7-
processIsolation="false"
85
stopOnFailure="false"
6+
cacheDirectory=".phpunit.cache"
7+
processIsolation="false"
8+
backupStaticProperties="false"
99
bootstrap="tests/bootstrap.php">
1010
<testsuites>
1111
<testsuite name="Test Suite">

0 commit comments

Comments
 (0)