Skip to content

Commit a375e50

Browse files
committed
[Feature] Upgrade to Laravel 10 and set minimum PHP to 8.1
1 parent 1429b26 commit a375e50

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
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.0.1] - 2022-06-25
713

814
### Fixed

composer.json

Lines changed: 7 additions & 7 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/contracts": "^8.0|^9.0",
29-
"illuminate/support": "^8.0|^9.0",
30-
"laravel-json-api/core": "^2.0",
28+
"illuminate/contracts": "^10.0",
29+
"illuminate/support": "^10.0",
30+
"laravel-json-api/core": "^3.0",
3131
"laravel-json-api/neomerx-json-api": "^5.0.1"
3232
},
3333
"require-dev": {
34-
"phpunit/phpunit": "^9.5.10"
34+
"phpunit/phpunit": "^9.5.28"
3535
},
3636
"autoload": {
3737
"psr-4": {
@@ -45,15 +45,15 @@
4545
},
4646
"extra": {
4747
"branch-alias": {
48-
"dev-develop": "2.x-dev"
48+
"dev-develop": "3.x-dev"
4949
},
5050
"laravel": {
5151
"providers": [
5252
"LaravelJsonApi\\Encoder\\Neomerx\\ServiceProvider"
5353
]
5454
}
5555
},
56-
"minimum-stability": "stable",
56+
"minimum-stability": "dev",
5757
"prefer-stable": true,
5858
"config": {
5959
"sort-packages": true

0 commit comments

Comments
 (0)