Skip to content

Commit 65e6ae9

Browse files
committed
Laravel 5.7 support added.
1 parent 756545d commit 65e6ae9

File tree

3 files changed

+84
-79
lines changed

3 files changed

+84
-79
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
],
1212
"require": {
1313
"php": "^7.1.3",
14-
"illuminate/support": "5.6.*",
15-
"illuminate/database": "5.6.*",
14+
"illuminate/support": "5.7.*",
15+
"illuminate/database": "5.7.*",
1616
"mockery/mockery": "^1.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^7.0",
20-
"orchestra/testbench": "3.6.*"
20+
"orchestra/testbench": "3.7.*"
2121
},
2222
"autoload": {
2323
"psr-4": {

composer.lock

Lines changed: 80 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/TestingTools/TestCase.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function setUp()
1616
{
1717
parent::setUp();
1818

19+
$this->withoutMockingConsoleOutput();
1920
$this->setUpDatabase();
2021
$this->setUpFactories();
2122
$this->setUpViews();

0 commit comments

Comments
 (0)