Skip to content

Commit d6e0fc9

Browse files
committed
[Feature] Upgrade to Laravel 10 and set minimum PHP to 8.1
1 parent 084a7e7 commit d6e0fc9

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
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+
- Upgrade to Laravel 10 and set minimum PHP version to 8.1.
11+
612
## [2.0.0] - 2022-02-09
713

814
### Added

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
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/pagination": "^8.0|^9.0",
30-
"illuminate/support": "^8.0|^9.0",
31-
"laravel-json-api/eloquent": "^2.0"
28+
"illuminate/database": "^10.0",
29+
"illuminate/pagination": "^10.0",
30+
"illuminate/support": "^10.0",
31+
"laravel-json-api/eloquent": "^3.0"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^6.23|^7.0",
35-
"phpunit/phpunit": "^9.5.10"
34+
"orchestra/testbench": "^8.0",
35+
"phpunit/phpunit": "^9.5.28"
3636
},
3737
"autoload": {
3838
"psr-4": {
@@ -48,10 +48,10 @@
4848
},
4949
"extra": {
5050
"branch-alias": {
51-
"dev-develop": "2.x-dev"
51+
"dev-develop": "3.x-dev"
5252
}
5353
},
54-
"minimum-stability": "stable",
54+
"minimum-stability": "dev",
5555
"prefer-stable": true,
5656
"config": {
5757
"sort-packages": true

0 commit comments

Comments
 (0)