Skip to content

Commit 83624a8

Browse files
feat!: upgrade to Laravel 11 and drop PHP 8.1 (#5)
1 parent 2a967b6 commit 83624a8

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [8.1, 8.2, 8.3]
18-
laravel: [10]
17+
php: [8.2, 8.3]
18+
laravel: [11]
1919

2020
steps:
2121
- name: Checkout Code

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## Unreleased
7+
8+
### Changed
9+
10+
- **BREAKING** Package now requires Laravel 11.
11+
- Minimum PHP version is now `8.2`.
12+
613
## [3.0.0] - 2023-02-14
714

815
### Changed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.1",
27-
"laravel-json-api/core": "^3.0"
26+
"php": "^8.2",
27+
"laravel-json-api/core": "^4.0"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^8.0",
30+
"orchestra/testbench": "^9.0",
3131
"phpunit/phpunit": "^10.5"
3232
},
3333
"autoload": {
@@ -43,7 +43,7 @@
4343
},
4444
"extra": {
4545
"branch-alias": {
46-
"dev-develop": "3.x-dev"
46+
"dev-develop": "4.x-dev"
4747
}
4848
},
4949
"minimum-stability": "stable",

0 commit comments

Comments
 (0)