Skip to content

Commit

Permalink
Laravel 11 support
Browse files Browse the repository at this point in the history
- Added PHP 8.3 to the CI matrix
- Dropped PHP 8.1 support
  • Loading branch information
fulopattila122 committed Feb 10, 2024
1 parent ba62135 commit 0803989
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2]
php: [8.2, 8.3]
stability: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 11.x.x - xx-xxx-xxxx

- Added Laravel 11 support
- Changed the minimum PHP version to v8.2

## 10.0.x - xx-xxx-xxxx

- fix for larastan issue (#596, thanks @WalrusSoup)
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"cocur/slugify": "^4.3",
"illuminate/config": "^10.0",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0"
"illuminate/config": "^11.0",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.28"
},
"autoload": {
Expand Down

0 comments on commit 0803989

Please sign in to comment.