Skip to content

Commit d1acd5c

Browse files
authored
Merge pull request #5 from peter279k/test_enhancement
test enhancement
2 parents 73ea1c3 + db64b74 commit d1acd5c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@
1717
"guzzlehttp/guzzle": "^6.0"
1818
},
1919
"require-dev": {
20-
"phpunit/phpunit": "^5.5"
20+
"phpunit/phpunit": "^5.5|^6.5"
2121
},
2222
"autoload": {
2323
"psr-4": {
2424
"Jaybizzle\\": "src/"
2525
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"DeployBot\\Test\\": "tests/"
30+
}
2631
}
2732
}

tests/DeployBotTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
use GuzzleHttp\Handler\MockHandler;
77
use GuzzleHttp\HandlerStack;
88
use Jaybizzle\DeployBot;
9+
use PHPUnit\Framework\TestCase;
910

10-
class DeployBotTest extends \PHPUnit_Framework_TestCase
11+
class DeployBotTest extends TestCase
1112
{
1213
/**
1314
* @dataProvider providerParamNames

0 commit comments

Comments
 (0)