Skip to content

Commit ab1a424

Browse files
authored
Merge pull request #154 from laravel/remove-laravel8
[2.x] Remove Laravel 8
2 parents 20379ba + 60342b7 commit ab1a424

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
],
1212
"require": {
1313
"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"
14+
"illuminate/console": "^7.0",
15+
"illuminate/filesystem": "^7.0",
16+
"illuminate/support": "^7.0"
1717
},
1818
"require-dev": {
1919
"mockery/mockery": "^1.0",
20-
"phpunit/phpunit": "^8.0|^9.0"
20+
"phpunit/phpunit": "^8.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

Diff for: src/Auth/stubs/routes.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
Auth::routes();
33

4-
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
4+
Route::get('/home', 'HomeController@index')->name('home');

0 commit comments

Comments
 (0)