Skip to content

Commit d525666

Browse files
committed
Test using newer versions of PHPUnit
1 parent d37c5d1 commit d525666

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
.phpunit.result.cache
12
composer.lock
3+
phpunit.xml
24
vendor

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"php": "^7.1"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^6.0"
29+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

phpunit.xml.dist

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit colors="true">
2+
<phpunit bootstrap="vendor/autoload.php"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
colors="true"
6+
verbose="true"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
processIsolation="false"
11+
stopOnFailure="false">
312
<testsuites>
413
<testsuite name="Dot Access Data Test Suite">
514
<directory>./tests</directory>

0 commit comments

Comments
 (0)