Skip to content

Commit

Permalink
Merge pull request #36 from tarfin-labs/laravel-11-upgrade
Browse files Browse the repository at this point in the history
- Add Laravel 11 support
  • Loading branch information
mkeremcansev authored Apr 8, 2024
2 parents f3fbe0a + 49df31c commit a838b67
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2]
laravel: [8, 9, 10]
php: [8.1, 8.2, 8.3]
laravel: [8, 9, 10, 11]
exclude:
- php: 8.2
laravel: 8
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to `laravel-config` will be documented in this file.

## [Unreleased]

## [5.1.0] - 2024-04-08

- Laravel 11 and PHP 8.3 support added.

## [5.0.0] - 2024-03-05

- Dropped support for PHP versions below 8.1.
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
}
],
"require": {
"php": "^8.1|^8.2",
"php": "^8.1|^8.2|^8.3",
"ext-json": "*",
"illuminate/support": "^8.49|^9.0|^10.0",
"illuminate/support": "^8.49|^9.0|^10.0|^11.0",
"laravel/legacy-factories": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^6.13|^7.0|^8.0",
"orchestra/testbench": "^6.13|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5.2"
},
"autoload": {
Expand Down

0 comments on commit a838b67

Please sign in to comment.