We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 910788a commit 6d22285Copy full SHA for 6d22285
UPGRADE.md
@@ -1,5 +1,25 @@
1
# Upgrade Guide
2
3
+## Upgrading To 4.0 From 3.x
4
+
5
+### ➡ Minimum Requirements Updated
6
7
+Due to PHP and PHPUnit version constraints with Laravel 11, we dropped support for Laravel 7.x, 8.x and 9.x.
8
9
+- The minimum PHP version required is now 8.1
10
+- The minimum Laravel version required is now 10
11
12
+---
13
14
+### ➡ Re-register Middleware
15
16
+Laravel 11 no longer has a `app/Http/Kernel.php` to register middleware.
17
+This is now handled in `bootstrap/app.php`.
18
19
+🔸 **Actions Required**
20
21
+If you use Laravel 11, register the middleware in `bootstrap/app.php` as described in the README.
22
23
## Upgrading To 3.0 From 2.x
24
25
This upgrade contains a number of small but breaking changes, as well as a huge internal makeover.
0 commit comments