Skip to content

Commit 3bdd62b

Browse files
authored
Support PHPUnit 7.2 (#2)
1 parent c82443a commit 3bdd62b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": "^5.5 || ^7.0",
1414
"phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
15-
"phpunitgoodpractices/polyfill": "^1.0"
15+
"phpunitgoodpractices/polyfill": "^1.1"
1616
},
1717
"conflict": {
1818
"hhvm": "*"

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<phpunit
4-
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
66
backupGlobals="false"
77
backupStaticAttributes="false"
88
beStrictAboutChangesToGlobalState="true"
99
beStrictAboutOutputDuringTests="true"
10-
beStrictAboutTestSize="true"
1110
beStrictAboutTestsThatDoNotTestAnything="true"
1211
beStrictAboutTodoAnnotatedTests="true"
1312
bootstrap="./vendor/autoload.php"
@@ -16,12 +15,13 @@
1615
convertErrorsToExceptions="true"
1716
convertNoticesToExceptions="true"
1817
convertWarningsToExceptions="true"
18+
enforceTimeLimit="true"
1919
processIsolation="false"
2020
stopOnFailure="false"
2121
verbose="true"
2222
>
2323
<testsuites>
24-
<testsuite>
24+
<testsuite name="all">
2525
<directory>./tests</directory>
2626
</testsuite>
2727
</testsuites>

0 commit comments

Comments
 (0)