Skip to content

Commit 12f6eef

Browse files
authored
Merge pull request #1591 from MasterOdin/phpunit_versions
Update phpunit/phpunit requirement from >=5.7,<7.0 to >=5.7,<8.0
2 parents 31873a7 + c054f40 commit 12f6eef

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"symfony/yaml": "^2.8|^3.0|^4.0"
3434
},
3535
"require-dev": {
36-
"phpunit/phpunit": ">=5.7,<7.0",
36+
"phpunit/phpunit": ">=5.7,<8.0",
3737
"sebastian/comparator": ">=1.2.3",
3838
"cakephp/cakephp-codesniffer": "^3.0"
3939
},

phpunit.xml.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@
5555
</filter>
5656

5757
<logging>
58-
<log type="coverage-html" target="./tests/log/report" charset="UTF-8"
59-
yui="true" highlight="true"
58+
<log type="coverage-html" target="./tests/log/report"
6059
lowUpperBound="50" highLowerBound="80"/>
6160
<log type="testdox-html" target="./tests/log/testdox.html" />
6261
</logging>

tests/Phinx/Migration/AbstractMigrationTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public function testSetOutputMethods()
4040

4141
// stub output
4242
$outputStub = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')
43-
->setConstructorArgs([[]])
4443
->getMock();
4544

4645
// test methods
@@ -53,7 +52,6 @@ public function testGetInputMethodWithInjectedInput()
5352
{
5453
// stub input
5554
$inputStub = $this->getMockBuilder('\Symfony\Component\Console\Input\InputInterface')
56-
->setConstructorArgs([[]])
5755
->getMock();
5856

5957
// stub migration
@@ -68,7 +66,6 @@ public function testGetOutputMethodWithInjectedOutput()
6866
{
6967
// stub output
7068
$outputStub = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')
71-
->setConstructorArgs([[]])
7269
->getMock();
7370

7471
// stub migration

0 commit comments

Comments
 (0)