Skip to content

Commit

Permalink
build(deps): allow core v4 and v5
Browse files Browse the repository at this point in the history
  • Loading branch information
lindyhopchris committed Nov 30, 2024
1 parent 701c4fa commit 19d12f7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: true
matrix:
php: [8.2, 8.3, 8.4]
laravel: [11]
core: ['4.3.2', '5.0.1']

steps:
- name: Checkout Code
Expand All @@ -30,8 +30,8 @@ jobs:
coverage: none
ini-values: error_reporting=E_ALL

- name: Set Laravel Version
run: composer require "illuminate/database:^${{ matrix.laravel }}" --no-update
- name: Set Laravel JSON:API Core Version
run: composer require "laravel-json-api/core:^${{ matrix.core }}" --no-update

- name: Install dependencies
uses: nick-fields/retry@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. This projec

## Unreleased

### Added

- Allow `laravel-json-api/core` v4 and v5.

### Fixed

- Remove deprecation notices in PHP 8.4.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"ext-json": "*",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0",
"laravel-json-api/core": "^4.3.2"
"laravel-json-api/core": "^4.3.2|^5.0.1"
},
"require-dev": {
"orchestra/testbench": "^9.0",
Expand All @@ -50,7 +50,7 @@
"dev-develop": "4.x-dev"
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
Expand Down

0 comments on commit 19d12f7

Please sign in to comment.