Skip to content

Commit

Permalink
Merge pull request #608 from fulopattila122/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11 Preparation
  • Loading branch information
cviebrock authored Feb 10, 2024
2 parents ba62135 + 121af49 commit 9547c16
Show file tree
Hide file tree
Showing 4 changed files with 15 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ version of the package.
| Laravel Version | Package Version |
|:---------------:|:---------------:|
| 11.0 | ^11.0 |
| 10.0 | ^10.0 |
| 9.0 | ^9.0 |
| 8.0 | ^8.0 |
Expand Down
13 changes: 8 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 Expand Up @@ -54,6 +54,9 @@
"providers": [
"Cviebrock\\EloquentSluggable\\ServiceProvider"
]
},
"branch-alias": {
"dev-master": "11.0.x-dev"
}
},
"minimum-stability": "dev",
Expand Down

0 comments on commit 9547c16

Please sign in to comment.