Skip to content

Commit 5d67c18

Browse files
authored
Support PHPUnit 7.2 (#3)
* Support PHPUnit 7.2 * Update composer.json
1 parent 076e764 commit 5d67c18

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@
1515
"require": {
1616
"php": "^5.5 || ^7.0",
1717
"phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
18-
"phpunitgoodpractices/polyfill": "^1.0"
18+
"phpunitgoodpractices/polyfill": "^1.1"
1919
},
2020
"conflict": {
2121
"hhvm": "*"
2222
},
2323
"require-dev": {
2424
"johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
25-
"phpunitgoodpractices/traits": "^1.3.2",
2625
"symfony/phpunit-bridge": "^3.2.2 || ^4.0"
2726
},
2827
"config": {

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)