Skip to content

Commit 66a3c1f

Browse files
committed
feat: support laravel 12
1 parent ac2bf6e commit 66a3c1f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
php: [8.2, 8.3, 8.4]
18-
laravel: [11]
18+
laravel: [11, 12]
1919

2020
steps:
2121
- name: Checkout Code

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. This projec
55

66
## Unreleased
77

8+
### Added
9+
10+
- Package now supports Laravel 12.
11+
812
## [7.1.0] - 2025-01-11
913

1014
### Changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@
2525
"php": "^8.2",
2626
"ext-json": "*",
2727
"laravel-json-api/neomerx-json-api": "^5.0.3",
28-
"laravel/framework": "^11.0",
28+
"laravel/framework": "^11.0|^12.0",
2929
"nyholm/psr7": "^1.8",
3030
"ramsey/uuid": "^4.0",
3131
"symfony/psr-http-message-bridge": "^7.0"
3232
},
3333
"require-dev": {
3434
"ext-sqlite3": "*",
3535
"guzzlehttp/guzzle": "^7.8",
36-
"laravel-json-api/testing": "^3.0",
36+
"laravel-json-api/testing": "^3.1",
3737
"laravel/legacy-factories": "^1.4.0",
38-
"laravel/ui": "^4.4",
38+
"laravel/ui": "^4.6",
3939
"mockery/mockery": "^1.6",
40-
"orchestra/testbench": "^9.0",
41-
"phpunit/phpunit": "^10.5"
40+
"orchestra/testbench": "^9.0|^10.0",
41+
"phpunit/phpunit": "^10.5|^11.0"
4242
},
4343
"suggest": {
4444
"cloudcreativity/json-api-testing": "Required to use the test helpers."

0 commit comments

Comments
 (0)