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

Commit d3d74de

Browse files
authored
Support PHPUnit 7.3 (#37)
1 parent 10d22ad commit d3d74de

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.php_cs
22
/.php_cs.cache
3+
/.phpunit.result.cache
34
/composer.lock
45
/phpunit.xml
56
/vendor/

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ script:
5757
- ./run-tests.sh ~7.0.0 || travis_terminate 1
5858
- ./run-tests.sh ~7.1.0 || travis_terminate 1
5959
- ./run-tests.sh ~7.2.6 || travis_terminate 1
60+
- ./run-tests.sh ~7.3.0 || travis_terminate 1
6061

6162
jobs:
6263
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 || ~7.2.6"
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.6 || ~7.3.0"
1515
},
1616
"require-dev": {
1717
"phpunitgoodpractices/polyfill": "^1.1"

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<phpunit
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
5+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
66
backupGlobals="false"
77
backupStaticAttributes="false"
88
bootstrap="./tests/bootstrap.php"

0 commit comments

Comments
 (0)