Skip to content

Commit ef2c779

Browse files
authored
Merge pull request #35 from radmen/laravel-5.8-support
Laravel 5.8 support
2 parents 8b7ac78 + 8abfc2a commit ef2c779

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
],
1818
"require": {
1919
"php": "^7.1",
20-
"illuminate/container": "5.7.*",
21-
"illuminate/database": "^5.7",
22-
"illuminate/log": "5.7.*",
23-
"illuminate/routing": "5.7.*",
24-
"illuminate/support": "5.7.*",
20+
"illuminate/container": "^5.7|^5.8",
21+
"illuminate/database": "^5.7|^5.8",
22+
"illuminate/log": "^5.7|^5.8",
23+
"illuminate/routing": "^5.7|^5.8",
24+
"illuminate/support": "^5.7|^5.8",
2525
"willdurand/email-reply-parser": "^2.8",
2626
"zbateson/mail-mime-parser": "^1.1"
2727
},
2828
"require-dev": {
2929
"mockery/mockery": "^1.2",
30-
"orchestra/testbench": "3.7.*",
30+
"orchestra/testbench": "^3.7|^3.8",
3131
"phpunit/phpunit": "^7.0",
3232
"zendframework/zend-mail": "^2.10"
3333
},

tests/Console/CleanEmailsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class CleanEmailsTest extends TestCase
1313
{
14-
public function setUp()
14+
public function setUp(): void
1515
{
1616
parent::setUp();
1717

0 commit comments

Comments
 (0)