Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit ea3bd8b

Browse files
authored
Support PHPUnit 7.2 (#35)
1 parent 4446865 commit ea3bd8b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ script:
5656
- ./run-tests.sh ~6.5.0 || travis_terminate 1
5757
- ./run-tests.sh ~7.0.0 || travis_terminate 1
5858
- ./run-tests.sh ~7.1.0 || travis_terminate 1
59+
- ./run-tests.sh ~7.2.0 || travis_terminate 1
5960

6061
jobs:
6162
include:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": "^5.5 || ^7.0",
14-
"phpunit/phpunit": "~4.0.0 || ~4.1.0 || ~4.2.0 || ~4.3.0 || ~4.4.0 || ~4.5.0 || ~4.6.0 || ~4.8.0 || ~5.3.0 || ~5.4.0 || ~5.5.0 || ~5.6.0 || ~5.7.0 || ~6.0.0 || ~6.1.0 || ~6.2.0 || ~6.3.0 || ~6.4.0 || ~6.5.0 || ~7.0.0 || ~7.1.0"
14+
"phpunit/phpunit": "~4.0.0 || ~4.1.0 || ~4.2.0 || ~4.3.0 || ~4.4.0 || ~4.5.0 || ~4.6.0 || ~4.8.0 || ~5.3.0 || ~5.4.0 || ~5.5.0 || ~5.6.0 || ~5.7.0 || ~6.0.0 || ~6.1.0 || ~6.2.0 || ~6.3.0 || ~6.4.0 || ~6.5.0 || ~7.0.0 || ~7.1.0 || ~7.2.0"
1515
},
1616
"require-dev": {
1717
"phpunitgoodpractices/polyfill": "^1.1"

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
stopOnFailure="false"
1616
>
1717
<testsuites>
18-
<testsuite>
18+
<testsuite name="all">
1919
<directory>./tests</directory>
2020
</testsuite>
2121
</testsuites>
2222

2323
<filter>
2424
<whitelist>
25-
<directory>./src</directory>>
25+
<directory>./src</directory>
2626
</whitelist>
2727
</filter>
2828
</phpunit>

0 commit comments

Comments
 (0)