Skip to content

Commit 37e1831

Browse files
feat!: upgrade to Laravel 11 and drop PHP 8.1 (#267)
1 parent 67c9037 commit 37e1831

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
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

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/dummy
22
vendor/
33
composer.lock
4-
.phpunit.result.cache
5-
.phpunit.cache
4+
.phpunit.cache/

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. This projec
55

66
## Unreleased
77

8+
### Changed
9+
10+
- **BREAKING** Package now requires Laravel 11.
11+
- Minimum PHP version is now `8.2`.
12+
813
## [3.4.0] - 2024-03-03
914

1015
### Added

composer.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.1",
26+
"php": "^8.2",
2727
"ext-json": "*",
28-
"laravel-json-api/core": "^3.3",
29-
"laravel-json-api/eloquent": "^3.1",
30-
"laravel-json-api/encoder-neomerx": "^3.1",
31-
"laravel-json-api/exceptions": "^2.1",
32-
"laravel-json-api/spec": "^2.0",
33-
"laravel-json-api/validation": "^3.0",
34-
"laravel/framework": "^10.0"
28+
"laravel-json-api/core": "^4.0",
29+
"laravel-json-api/eloquent": "^4.0",
30+
"laravel-json-api/encoder-neomerx": "^4.0",
31+
"laravel-json-api/exceptions": "^3.0",
32+
"laravel-json-api/spec": "^3.0",
33+
"laravel-json-api/validation": "^4.0",
34+
"laravel/framework": "^11.0"
3535
},
3636
"require-dev": {
37-
"laravel-json-api/testing": "^2.1",
38-
"orchestra/testbench": "^8.0",
39-
"phpunit/phpunit": "^10.0"
37+
"laravel-json-api/testing": "^3.0",
38+
"orchestra/testbench": "^9.0",
39+
"phpunit/phpunit": "^10.5"
4040
},
4141
"autoload": {
4242
"psr-4": {
@@ -53,7 +53,7 @@
5353
},
5454
"extra": {
5555
"branch-alias": {
56-
"dev-develop": "3.x-dev"
56+
"dev-develop": "4.x-dev"
5757
},
5858
"laravel": {
5959
"aliases": {

0 commit comments

Comments
 (0)