Skip to content

Commit a9f52ec

Browse files
committed
build: add support for Laravel 10
1 parent 249ef58 commit a9f52ec

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: [ '7.4', '8.0', '8.1' ]
13-
laravel: [ '6.*', '7.*', '8.*', '9.*' ]
14-
stability: [ prefer-stable ]
13+
laravel: [ '8.*', '9.*', '10.*' ]
14+
stability: [ prefer-lowest, prefer-stable ]
1515
exclude:
16-
- laravel: '6.*'
17-
php: '8.1'
18-
- laravel: '7.*'
19-
php: '8.1'
2016
- laravel: '9.*'
2117
php: '7.4'
18+
- laravel: '10.*'
19+
php: '7.4'
20+
- laravel: '10.*'
21+
php: '8.0'
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2424

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
### Added
10+
11+
* Added support for Laravel 10.
12+
913
### Removed
1014

1115
* Dropped PHP <7.4 support.
16+
* Dropped Laravel <8 support.
1217

1318
## [1.1.0] - 2022-02-22
1419

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.",
55
"require": {
66
"php": "^7.4|^8.0",
7-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
7+
"illuminate/support": "^8.0|^9.0|^10.0",
88
"swisnl/json-api-client": "^2.0"
99
},
1010
"require-dev": {

0 commit comments

Comments
 (0)