We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20379ba + 60342b7 commit ab1a424Copy full SHA for ab1a424
composer.json
@@ -11,13 +11,13 @@
11
],
12
"require": {
13
"php": "^7.2.5",
14
- "illuminate/console": "^7.0|^8.0",
15
- "illuminate/filesystem": "^7.0|^8.0",
16
- "illuminate/support": "^7.0|^8.0"
+ "illuminate/console": "^7.0",
+ "illuminate/filesystem": "^7.0",
+ "illuminate/support": "^7.0"
17
},
18
"require-dev": {
19
"mockery/mockery": "^1.0",
20
- "phpunit/phpunit": "^8.0|^9.0"
+ "phpunit/phpunit": "^8.0"
21
22
"autoload": {
23
"psr-4": {
src/Auth/stubs/routes.stub
@@ -1,4 +1,4 @@
1
2
Auth::routes();
3
4
-Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
+Route::get('/home', 'HomeController@index')->name('home');
0 commit comments