Skip to content

Commit

Permalink
Add preliminary Laravel 9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Feb 2, 2022
1 parent 794d62e commit b848c43
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ checks:
tools:
external_code_coverage:
timeout: 600
runs: 3
runs: 4

build:
nodes:
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
env: LARAVEL_VERSION="^7.0"
- php: "8.0"
env: LARAVEL_VERSION="^8.0"
- php: "8.0"
env: LARAVEL_VERSION="^9.0"

sudo: false

Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

* Nothing
### Added

* Added support for Laravel 9.

## [1.0.0] - 2022-01-04

Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.",
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"swisnl/json-api-client": "^2.0"
},
"require-dev": {
Expand Down Expand Up @@ -53,5 +53,7 @@
"TypeMapper": "Swis\\JsonApi\\Client\\Facades\\TypeMapperFacade"
}
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit b848c43

Please sign in to comment.