Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .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]
laravel: [11, 12]

steps:
- name: Checkout Code
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

- Package now supports Laravel 12.

## [7.1.0] - 2025-01-11

### Changed
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
"php": "^8.2",
"ext-json": "*",
"laravel-json-api/neomerx-json-api": "^5.0.3",
"laravel/framework": "^11.0",
"laravel/framework": "^11.0|^12.0",
"nyholm/psr7": "^1.8",
"ramsey/uuid": "^4.0",
"symfony/psr-http-message-bridge": "^7.0"
},
"require-dev": {
"ext-sqlite3": "*",
"guzzlehttp/guzzle": "^7.8",
"laravel-json-api/testing": "^3.0",
"laravel-json-api/testing": "^3.1",
"laravel/legacy-factories": "^1.4.0",
"laravel/ui": "^4.4",
"laravel/ui": "^4.6",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.5"
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"suggest": {
"cloudcreativity/json-api-testing": "Required to use the test helpers."
Expand Down