Skip to content

Commit fe3bd7d

Browse files
committed
[feature] laravel 5.8 support
1 parent 81f5bba commit fe3bd7d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
],
1818
"require": {
1919
"php": ">=7.1",
20-
"illuminate/bus": "~5.7.0",
21-
"illuminate/console": "~5.7.0",
22-
"illuminate/contracts": "~5.7.0",
23-
"illuminate/database": "~5.7.0",
24-
"illuminate/events": "~5.7.0",
25-
"illuminate/notifications": "~5.7.0",
26-
"laravelcollective/html": "~5.7"
20+
"illuminate/bus": "~5.8.0",
21+
"illuminate/console": "~5.8.0",
22+
"illuminate/contracts": "~5.8.0",
23+
"illuminate/database": "~5.8.0",
24+
"illuminate/events": "~5.8.0",
25+
"illuminate/notifications": "~5.8.0",
26+
"laravelcollective/html": "^5.8"
2727
},
2828
"require-dev": {
2929
"mockery/mockery": "^1.0",
30-
"orchestra/database": "^3.0",
31-
"orchestra/testbench" : "^3.6",
32-
"phpunit/phpunit": ">=7.0"
30+
"orchestra/database": "^3.7",
31+
"orchestra/testbench" : "^3.8",
32+
"phpunit/phpunit": "^7.5"
3333
},
3434
"suggest": {
3535
"nexmo/client": "Required for sms notifications."

tests/TestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
namespace Studio\Totem\Tests;
44

5+
use Collective\Html\FormFacade;
6+
use Collective\Html\HtmlFacade;
7+
use Collective\Html\HtmlServiceProvider;
58
use Exception;
69
use Studio\Totem\User;
710
use Studio\Totem\Totem;
8-
use Collective\Html\FormFacade;
9-
use Collective\Html\HtmlFacade;
1011
use Illuminate\Support\Facades\Auth;
11-
use Collective\Html\HtmlServiceProvider;
1212
use Orchestra\Testbench\Exceptions\Handler;
1313
use Illuminate\Contracts\Debug\ExceptionHandler;
1414
use Studio\Totem\Providers\TotemServiceProvider;
1515

1616
class TestCase extends \Orchestra\Testbench\TestCase
1717
{
18-
public function setUp()
18+
public function setUp(): void
1919
{
2020
parent::setUp();
2121

0 commit comments

Comments
 (0)