Skip to content

Commit f683aab

Browse files
update package to support Laravel 5.6
1 parent edaaa5d commit f683aab

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

composer.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,21 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.0",
15-
"illuminate/support": "5.5.*",
16-
"illuminate/console": "5.5.*",
17-
"illuminate/database": "5.5.*",
18-
"illuminate/auth": "5.5.*",
19-
"illuminate/notifications": "5.5.*"
14+
"php": ">=7.1.3",
15+
"illuminate/support": "5.6.*",
16+
"illuminate/console": "5.6.*",
17+
"illuminate/database": "5.6.*",
18+
"illuminate/auth": "5.6.*",
19+
"illuminate/notifications": "5.6.*"
2020
},
2121
"autoload": {
2222
"psr-4": {
2323
"Dyrynda\\Artisan\\": "src/"
2424
}
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "~6.0",
28-
"orchestra/testbench": "3.5.*",
29-
"orchestra/database": "3.5.*"
27+
"phpunit/phpunit": "~7.0",
28+
"orchestra/testbench": "~3.0"
3029
},
3130
"autoload-dev": {
3231
"psr-4": {

tests/TestCase.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Tests;
44

55
use Dyrynda\Artisan\MakeUserServiceProvider;
6-
use Orchestra\Database\ConsoleServiceProvider;
76
use Orchestra\Testbench\TestCase as Orchestra;
87

98
abstract class TestCase extends Orchestra
@@ -21,7 +20,6 @@ protected function getPackageProviders($app)
2120
{
2221
return [
2322
MakeUserServiceProvider::class,
24-
ConsoleServiceProvider::class,
2523
];
2624
}
2725

0 commit comments

Comments
 (0)