diff --git a/composer.json b/composer.json index 808e110..0f3ed1f 100644 --- a/composer.json +++ b/composer.json @@ -11,13 +11,13 @@ ], "require": { "php": "^7.2.5", - "illuminate/console": "^7.0|^8.0", - "illuminate/filesystem": "^7.0|^8.0", - "illuminate/support": "^7.0|^8.0" + "illuminate/console": "^7.0", + "illuminate/filesystem": "^7.0", + "illuminate/support": "^7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "phpunit/phpunit": "^8.0|^9.0" + "phpunit/phpunit": "^8.0" }, "autoload": { "psr-4": { diff --git a/src/Auth/stubs/routes.stub b/src/Auth/stubs/routes.stub index cc02897..2c37ded 100644 --- a/src/Auth/stubs/routes.stub +++ b/src/Auth/stubs/routes.stub @@ -1,4 +1,4 @@ Auth::routes(); -Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); +Route::get('/home', 'HomeController@index')->name('home');