Skip to content

Commit 8f8a6e4

Browse files
committed
Support PHPUnit 7.x
Fixes #28
1 parent c39f337 commit 8f8a6e4

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"php": ">=5.3.2"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "~4.0"
10+
"phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
1111
},
1212
"autoload": {
1313
"psr-4": {

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
convertWarningsToExceptions="true"
77
processIsolation="false"
88
stopOnFailure="false"
9-
syntaxCheck="false"
109
bootstrap="vendor/autoload.php"
1110
>
1211

tests/XdgTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class XdgTest extends PHPUnit_Framework_TestCase
3+
class XdgTest extends \PHPUnit\Framework\TestCase
44
{
55
/**
66
* @return \XdgBaseDir\Xdg

0 commit comments

Comments
 (0)