Skip to content

Commit

Permalink
feat!: upgrade to Laravel 11 and drop support for PHP 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lindyhopchris committed Feb 8, 2024
1 parent 84c1c70 commit c775316
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [10]
php: [8.2, 8.3]
laravel: [11]

steps:
- name: Checkout Code
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
All notable changes to this project will be documented in this file. This project adheres to
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).

## Unreleased
## Unreleased (Laravel 11)

### Changed

- **BREAKING** Package now requires Laravel 11.
- Minimum PHP version is now `8.2`.

## [3.3.0] - 2023-11-08

Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"illuminate/contracts": "^10.0",
"illuminate/http": "^10.0",
"illuminate/support": "^10.0"
"illuminate/contracts": "^11.0",
"illuminate/http": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.28"
Expand All @@ -45,10 +45,11 @@
},
"extra": {
"branch-alias": {
"dev-develop": "3.x-dev"
"dev-develop": "3.x-dev",
"dev-laravel11": "4.x-dev"
}
},
"minimum-stability": "stable",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
Expand Down

0 comments on commit c775316

Please sign in to comment.