Skip to content

Commit

Permalink
Support PHPUnit 7.x
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
bobthecow committed Dec 4, 2019
1 parent c39f337 commit 8f8a6e4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
"phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>

Expand Down
2 changes: 1 addition & 1 deletion tests/XdgTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

class XdgTest extends PHPUnit_Framework_TestCase
class XdgTest extends \PHPUnit\Framework\TestCase
{
/**
* @return \XdgBaseDir\Xdg
Expand Down

0 comments on commit 8f8a6e4

Please sign in to comment.