Skip to content

Commit a838b67

Browse files
authored
Merge pull request #36 from tarfin-labs/laravel-11-upgrade
- Add Laravel 11 support
2 parents f3fbe0a + 49df31c commit a838b67

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [8.1, 8.2]
13-
laravel: [8, 9, 10]
12+
php: [8.1, 8.2, 8.3]
13+
laravel: [8, 9, 10, 11]
1414
exclude:
1515
- php: 8.2
1616
laravel: 8

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to `laravel-config` will be documented in this file.
33

44
## [Unreleased]
55

6+
## [5.1.0] - 2024-04-08
7+
8+
- Laravel 11 and PHP 8.3 support added.
9+
610
## [5.0.0] - 2024-03-05
711

812
- Dropped support for PHP versions below 8.1.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
}
3232
],
3333
"require": {
34-
"php": "^8.1|^8.2",
34+
"php": "^8.1|^8.2|^8.3",
3535
"ext-json": "*",
36-
"illuminate/support": "^8.49|^9.0|^10.0",
36+
"illuminate/support": "^8.49|^9.0|^10.0|^11.0",
3737
"laravel/legacy-factories": "^1.0"
3838
},
3939
"require-dev": {
40-
"orchestra/testbench": "^6.13|^7.0|^8.0",
40+
"orchestra/testbench": "^6.13|^7.0|^8.0|^9.0",
4141
"phpunit/phpunit": "^9.5.2"
4242
},
4343
"autoload": {

0 commit comments

Comments
 (0)