Skip to content

Commit 02c962a

Browse files
committed
[Feature] Upgrade to Laravel 10 and set minimum PHP to 8.1
1 parent a6a2297 commit 02c962a

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [7.4, '8.0', 8.1, 8.2]
18-
laravel: [8, 9]
19-
exclude:
20-
- php: 7.4
21-
laravel: 9
17+
php: [8.1, 8.2]
18+
laravel: [10]
2219

2320
steps:
2421
- name: Checkout Code

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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+
- Upgraded to Laravel 10 and set minimum PHP version to `8.1`.
11+
612
## [2.2.1] - 2023-01-23
713

814
### Fixed

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.4|^8.0",
26+
"php": "^8.1",
2727
"ext-json": "*",
28-
"illuminate/database": "^8.0|^9.0",
29-
"illuminate/support": "^8.0|^9.0",
30-
"laravel-json-api/core": "^2.0"
28+
"illuminate/database": "^10.0",
29+
"illuminate/support": "^10.0",
30+
"laravel-json-api/core": "^3.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^6.23|^7.0",
34-
"phpunit/phpunit": "^9.5.10"
33+
"orchestra/testbench": "^8.0",
34+
"phpunit/phpunit": "^9.5.28"
3535
},
3636
"autoload": {
3737
"psr-4": {
@@ -47,10 +47,10 @@
4747
},
4848
"extra": {
4949
"branch-alias": {
50-
"dev-develop": "2.x-dev"
50+
"dev-develop": "3.x-dev"
5151
}
5252
},
53-
"minimum-stability": "stable",
53+
"minimum-stability": "dev",
5454
"prefer-stable": true,
5555
"config": {
5656
"sort-packages": true

0 commit comments

Comments
 (0)