Skip to content

Commit 3a8d0e8

Browse files
authored
Merge pull request #98 from drweissbrot/laravel-6.0
Allow Laravel 6.0
2 parents 93cd1df + ab15649 commit 3a8d0e8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
],
1414
"require": {
1515
"php": "^7.1",
16-
"illuminate/notifications": "^5.3",
17-
"illuminate/support": "^5.1",
16+
"illuminate/notifications": "^5.3|^6.0",
17+
"illuminate/support": "^5.1|^6.0",
1818
"minishlink/web-push": "^5.0"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "~1.0",
22-
"phpunit/phpunit": "~7.0",
23-
"orchestra/testbench": "^3.5"
22+
"orchestra/testbench": "^4.0",
23+
"phpunit/phpunit": "^8.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ protected function seeInConsoleOutput($expectedText)
9292
{
9393
$consoleOutput = $this->app[Kernel::class]->output();
9494

95-
$this->assertContains($expectedText, $consoleOutput, "Did not see `{$expectedText}` in console output: `$consoleOutput`");
95+
$this->assertStringContainsString($expectedText, $consoleOutput, "Did not see `{$expectedText}` in console output: `$consoleOutput`");
9696
}
9797
}

0 commit comments

Comments
 (0)